如何使用“喜欢”带有 unicode 字符串的语句?
我正在尝试使用 unicode 字符执行查询。我能够通过在查询前添加 N
来执行正常的相等查询(例如:..... WHERE column=N'exact_stringâ'
)。但当我尝试使用 LIKE
时,这似乎不起作用。关于如何实现这项工作有什么想法吗?
示例查询: SELECT * FROM t_sample WHERE t_column LIKE N'%â%'
另外,我如何知道 SQL Server 使用哪种编码来存储 nvarchar
或 nchar
code> 数据类型以及它使用什么编码在 SQL 编辑器中显示查询?
编辑:我的错。这确实有效。我尝试在错误的窗口中执行查询。但这样做的好处是我了解了 SQL Server 中的排序规则设置。
I am trying to execute a query with unicode characters. I was able to execute the normal equality query by prepending N
to the query (Eg: ..... WHERE column=N'exact_stringâ'
). But that doesn't seem to work when I try to use LIKE
. Any ideas on how to make this work?
Sample query:SELECT * FROM t_sample WHERE t_column LIKE N'%â%'
Also how can I know which encoding does the SQL Server use to store the nvarchar
or nchar
data type and what encoding it uses to show the query in SQL Editor?
EDIT: My bad. This actually works. I have tried executing the query in a wrong window. But the upside of this is that I learned about Collation settings in SQL Server.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 Unicode 搜索字符串:
来源
Use a Unicode search string:
Credit
确保表上的排序规则支持 unicode。
Make sure the collation on your table supports unicode.