sql server2005中的希伯来语编码

发布于 2024-09-13 15:20:16 字数 231 浏览 4 评论 0原文

我在 sql server 2005 中尝试此代码,

declare @userName nvarchar(50)
set @userName='איש2'    
print @userName

但我得到这个

???2

原因是什么?

看起来它将希伯来语字符替换为“?”

10倍

i try this code in sql server 2005

declare @userName nvarchar(50)
set @userName='איש2'    
print @userName

but i get this

???2

what is the cause?

it look like it replace the Hebrew char to "?"

10x

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

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

发布评论

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

评论(1

吻风 2024-09-20 15:20:37

使用 N 前缀,以便在数据库默认排序规则的代码页下将字符串文字解释为 unicode 而不是 char

declare @userName nvarchar(50)
set @userName=N'איש2'    
print @userName

Use the N prefix so the string literal is interpreted as unicode not char under the code page of whatever your database's default collation is

declare @userName nvarchar(50)
set @userName=N'איש2'    
print @userName
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文