2016年5月3日

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

摘要: 一、包含中文字符 select * from 表名 where 列名 like '%[吖-座]%' 二、包含英文字符 select * from 表名 where 列名 like '%[a-z]%' 三、包含纯数字 select * from 表名 where 列名 like '%[0-9]%' 阅读全文

posted @ 2016-05-03 20:22 杜军(橘仙) 阅读(259) 评论(0) 推荐(0) 编辑

导航