本文介绍了sql server中的arabic变量的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

嗨所有

i已存储其参数中的哪一个是阿拉伯语,我在输入此参数时遇到问题,如下所示

  @ Grade   nvarchar  50 
as

begin
声明 @ s nvarchar 50
set @s = N '+ @ Grade +'
print @ s





结果是'@Grade',那我怎么能以正确的格式输入呢

解决方案



hi all
i have stored which one of its parameter is in Arabic, i have a problem in entering this parameter like below

@Grade nvarchar(50)
as

begin
declare @s  nvarchar(50) 
set @s= N "'+@Grade+'" 
print @s



the result is '@Grade', So how could i input it in the correct format

解决方案



这篇关于sql server中的arabic变量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 11:48