我在 SQL Server 2000 中搜索波斯语术语时遇到问题

发布于 2024-10-09 20:57:01 字数 284 浏览 2 评论 0原文

我在 SQL Server 2000 中使用波斯语搜索时遇到问题。

我有一个包含 nvarchar 字段的表,其中包含 unicode(波斯语)值,并且需要使用 unicode(波斯语)文本搜索该内容。

我正在使用

select * from table1
where fieldname like '%[farsi word]%'

我的波斯语单词存在但返回 0 行。

我能做些什么?

谢谢大家。

I have a problem in SQL Server 2000 with farsi search.

I have a table with nvarchar fields with unicode (farsi) values and need to search content of that with unicode (farsi) text.

I am using

select * from table1
where fieldname like '%[farsi word]%'

My farsi word is exist but return 0 row.

What can I do?

thanks all.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

黎歌 2024-10-16 20:57:01

如果您使用 NVARCHAR 字段,则在搜索时还应该使用 Unicode!您可以通过在搜索词前添加 N 来实现此目的:

select * from table1
where fieldname like N'%[farsi word]%'

另外:请注意,如果您的搜索词以 % 通配符开头,则您基本上已经禁用了任何索引可能会加快您的搜索速度。使用 LIKE %...% 进行搜索总是会导致表扫描相当慢......

If you're using NVARCHAR fields, you should also use Unicode when searching! You do this by prepending a N before your search term:

select * from table1
where fieldname like N'%[farsi word]%'

Also: be aware the if your search term begins with a % wildcard, you've basically disabled all use of any indices there might be to speed up your search. Using LIKE %...% for searching will always result in a pretty slow table scan....

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