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