This topic has been archived. It cannot be replied.
-
工作学习 / 专业技术讨论 / SQL Server中, 假设一个变量@var的值是test, 如何转换成N'test'
-tonyhao(tonyhao);
2007-7-10
(#3796180@0)
-
Try cast(@var as nvarchar(num))
-deep_blue(BLUE);
2007-7-11
(#3797355@0)
-
在英文OS上, 如果值是汉字, 就不对了。 实际就是在英文OS上, 想让SQL Server支持Unicode. 怎么办啊?
-tonyhao(tonyhao);
2007-7-12
(#3801547@0)
-
ncarchar and nchar are for Unicode data and use the UNICODE UCS-2 character set.
-deep_blue(BLUE);
2007-7-13
(#3802590@0)