寻一条sql语句
我现在要写一条sql语句,如我要在一张表里查出所有的联通号码,移动号码.
select * from Test where mobile like '130% ' or mobile like '131% ' or moblie like '132% '... 我是这样写的.大家有没有什么好的写法!一旦采用马上给分.
------解决方案--------------------select * from Test where mobile > '130 ' and mobile < '135 '