SQL判断某列中是否包含中文字符、英文字符、纯数字 (转)

一、包含中文字符

select * from 表名 where 列名 like '%[吖-座]%'

二、包含英文字符

select * from 表名 where 列名 like '%[a-z]%' 

三、包含纯数字

select * from 表名 where 列名 like '%[0-9]%'

posted @ 2016-09-12 12:16  WinChance  阅读(331)  评论(0)    收藏  举报