代码改变世界

SqlServer判断表中某列是否包含中文,英文,纯数字

2020-12-02 10:27  NO.27  阅读(2052)  评论(0编辑  收藏  举报
1、字段包含中文 select * from table1 where 列名 like '%[吖-座]%' 2.字段包含英文字符 select * from table1 where 列名 like '%[a-z]%' 3.字段包含纯数字 select * from table1 where 列名