当前位置:Gxlcms > 数据库问题 > SqlServer判断表中某列是否包含中文,英文,纯数字

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

时间:2021-07-01 10:21:17 帮助过:55人阅读

1、字段包含中文

select * from table1 where 列名 like ‘%[吖-座]%‘

2.字段包含英文字符

select * from table1 where 列名 like ‘%[a-z]%‘ 

3.字段包含纯数字

select * from table1 where 列名 like ‘%[0-9]%‘

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

标签:包含   ble   判断   rom   sql   server   where   HERE   数字   

人气教程排行