sqlserver unicode编码解码使用
declare @s varchar(50); set @s = n'揶'; select unicode(@s),nchar(unicode(@s));
在 sql server 中处理 unicode 字串常数时,您必需在所有的 unicode 字串前加上大写字母 n 做为前置词,n 前置词代表的是 sql-92 标淮中的国家语言,且必须为大写。如果您没有在 unicode 字串常数前面加上 n 做为前置词,则 sql server 会在使用字串前,先将其转换成目前资料库的非 unicode 字码页。