前端之家收集整理的这篇文章主要介绍了
sql server2005中的希伯来语编码,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在
sql server 2005中尝试此
代码
declare @userName nvarchar(50)
set @userName='איש2'
print @userName
但我明白了
???2
原因是什么?
看起来它将希伯来字母替换为“?”
10倍
使用N前缀,使字符串
文字在任何
数据库的默认排序规则的
代码页下解释为unicode not char
declare @userName nvarchar(50)
set @userName=N'איש2'
print @userName
原文链接:https://www.f2er.com/mssql/80482.html