------解决方案-------------------- select * from table where col not like '%[a-zA-Z]%' ------解决方案-------------------- 错了,我看成是非英文了,应该是select * from table where col not like '%[啊-作]%' ,啊就是字典的第一个字,作应该对应字典的最后一个字,你自己查一下 ------解决方案-------------------- select * from table where col like '%[a-zA-Z]%' ------解决方案--------------------
这个好想可以吧,你试一下…… ------解决方案--------------------
mysql这样写:
select * from table where col REGEXP '^[a-z[:space:]]+$'
测试了没问题的