从CASE语句分配给T-SQL变量

前端之家收集整理的这篇文章主要介绍了从CASE语句分配给T-SQL变量前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在查询中分配一些变量,这些变量对它的列使用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

你能告诉我们你得到的具体错误吗?

原文链接:https://www.f2er.com/mssql/77826.html

猜你在找的MsSQL相关文章