oracle查询非数字开头的值select * from tabwhere trn1 not like '[0-9]%'这样在SqlServer下可以查询,但是oracle下就不起作用了,请大侠指点[解决办法]select * from table where substr(col,1,1) not between '0' and '9'