导航

2016年9月12日

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

posted @ 2016-09-12 12:16 WinChance 阅读(325) 评论(0) 推荐(0) 编辑