T-SQL语句 15

--use事物管理declare@khnvarchar(7)set@kh='计算机系'print@khprintleft(@kh,1)execute('selectsc.... --use 事物管理
declare @kh nvarchar(7)
set @kh='计算机系'
print @kh
print left(@kh,1)
execute ('select sc.sno,sname,sdept from student,sc where sc.sno=student.sno and student.sdept='+'''+@kh+''')
select sc.sno,sname,sdept from student,sc where sc.sno=student.sno and student.sdept='计算机系'

上述语句最后两个的执行结果应该是一样的,但我在自已的数据库中试验的结果如下:
是怎么回事呀!
直接在sdept后加上变量名执行时会有语法错误,因为我们为@kh赋值时是汉字.
如果按楼下的说法就相当于:…… sdept=计算机系 这样是不会通过语法检察有。
展开
 我来答
fupx2008
2009-03-28 · TA获得超过687个赞
知道小有建树答主
回答量:1203
采纳率:0%
帮助的人:769万
展开全部
execute ('select sc.sno,sname,sdept from student,sc where sc.sno=student.sno and student.sdept='+'''+@kh+''')
改为:
execute ('select sc.sno,sname,sdept from student,sc where sc.sno=student.sno and student.sdept=@kh)
hotyxm
2009-03-28 · TA获得超过1028个赞
知道大有可为答主
回答量:1698
采纳率:50%
帮助的人:1178万
展开全部
execute ('select sc.sno,sname,sdept from student,sc where sc.sno=student.sno and student.sdept@=kh)
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
窥探红杏
2009-04-10
知道答主
回答量:25
采纳率:0%
帮助的人:0
展开全部
sdept='+'''+@kh+''') 这有问题吧,应该对称的符号.
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式