从CASE语句分配给T-SQL变量
发布时间:2020-12-12 06:47:46 所属栏目:MsSql教程 来源:网络整理
导读:我想在查询中分配一些变量,这些变量对它的列使用CASE语句.不太确定如何做到这一点,无法找到正确的语法. 这是我到目前为止,但它有语法错误. -- set @theID and @theName with their appropriate values select top (1) @theID = (Case when B.ID IS NULL then
我想在查询中分配一些变量,这些变量对它的列使用CASE语句.不太确定如何做到这一点,无法找到正确的语法.
这是我到目前为止,但它有语法错误. -- set @theID and @theName with their appropriate values select top (1) @theID = (Case when B.ID IS NULL then A.ID else B.ID END),@theName = (Case when B.Name IS NULL then A.Name else B.Name END) from B left join A on A.ID = B.ID where ... 将这些变量粘贴在那里的正确位置/方法是什么? 解决方法你给出的例子应该有效.您可以从案例陈述中分配变量.只是假装整个CASE..WHEN..THEN..ELSE..END块是一个字段.这是一个通用的例子:declare @string1 nvarchar(100) = null,@string2 nvarchar(100) = null ; select top 1 @string1 = case when 1=1 then 'yes' else 'no' end,@string2 = case when 1=0 then 'yes' else 'no' end print 'string1 = ' + @string1 print 'string2 = ' + @string2 得到: string1 = yes string2 = no 你能告诉我们你得到的具体错误吗? (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |