日期:2014-05-17  浏览次数:20941 次

oracle查询非数字开头的值
select * from tab
where trn1 not like '[0-9]%'这样在SqlServer下可以查询,但是oracle下就不起作用了,请大侠指点

------解决方案--------------------
select * from table where substr(col,1,1) not between '0' and '9'