SQL判断某列中是否包含中文字符或者英文字符
 
[sql]
 
select * from 表名 where 某列 like '%[吖-座]%'  
 
select * from 表名 where 某列 like '%[a-z]%' 
04-23 17:10