sql server查找中文和英文



 select *  from table where col not LIKE '%[^A-Za-z]%'  --查找英文字母

select from tb where patindex('%[吖-座]%',col) > 0 --查找出中文

SELECT FROM TB WHERE COL LIKE N'%[吖-咗]%'  --查找出中文

你可能感兴趣的:(sql server查找中文和英文)