如何使用“喜欢”带有 unicode 字符串的语句?

发布于 2024-10-04 05:41:43 字数 440 浏览 4 评论 0原文

我正在尝试使用 unicode 字符执行查询。我能够通过在查询前添加 N 来执行正常的相等查询(例如:..... WHERE column=N'exact_stringâ')。但当我尝试使用 LIKE 时,这似乎不起作用。关于如何实现这项工作有什么想法吗?

示例查询: SELECT * FROM t_sample WHERE t_column LIKE N'%â%'

另外,我如何知道 SQL Server 使用哪种编码来存储 nvarcharnchar 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

瞳孔里扚悲伤 2024-10-11 05:41:43

使用 Unicode 搜索字符串:

WHERE CONTRACTORNAME LIKE N'%ạ%'

来源

Use a Unicode search string:

WHERE CONTRACTORNAME LIKE N'%ạ%'

Credit

国产ˉ祖宗 2024-10-11 05:41:43

确保表上的排序规则支持 unicode。

Make sure the collation on your table supports unicode.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文