欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

SqlServer UniCode编码解码使用

程序员文章站 2022-07-06 12:01:35
sqlserver unicode编码解码使用 declare @s varchar(50); set @s = n'揶'; select unicode(@s),nchar...

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 字码页。