欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

如何判断sql字段中存在中文字符?

程序员文章站 2022-06-17 11:59:13
...
如何判断sql字段中存在中文字符?
代码如下 复制代码
declare @t table([Name] nvarchar(10)) insert @t select '好的啊!' insert @t select '12345好的' insert @t select '123' insert @t select 'sdff' select * from @t where PATINDEX('%[吖-座]%',[name])>0 /* Name ---------- 好的啊! 12345好的 (所影响的行数为 2 行)*/