当我运行下面的代码时,我收到此错误:
为变量赋值的SELECT语句不能是 结合数据检索操作。
请参阅下面的代码:
DECLARE @M1 float
DECLARE @M2 float
declare @M3 float
DECLARE @M4 float
DECLARE @M5 float
DECLARE @M6 float
DECLARE @M7 float
DECLARE @M8 float
DECLARE @M9 float
DECLARE @M10 float
DECLARE @M11 float
DECLARE @M12 float
declare @theSum float
set @M1 = 0
set @m2 = 1954286
set @M3 = 1954286
set @M4 = 0
set @M5 = 0
set @M6 = 0
set @M7 = 0
set @M8 = 0
set @M9 = -11725714
set @M10 = 1954286
set @M11 = 1954286
set @theSum = @M1+@M2+@M4+@M5+@M6+@M7+@M8+@M9+@M10+@M11+@M12
SELECT @theSum,
@M3 = case
-- when M3 = 0 then 0
when @M1+@M2+@M4+@M5+@M6+@M7+@M8+@M9+@M10+@M11+@M12 != 0 then @M3-@M2 -- mvc
else
case when @M2 != 0 then @m3-@m2
when @M1 != 0 then @m3-@m1
when @M12 != 0 then @m3-@m12
when @M11 != 0 then @m3-@m11
when @M10 != 0 then @m3-@m10
when @M9 != 0 then @m3-@m9
when @M8 != 0 then @m3-@m8
when @M7 != 0 then @m3-@m7
when @M6 != 0 then @m3-@m6
when @M5 != 0 then @m3-@m5
when @M4 != 0 then @m3-@m4
else @m3
end
end
没有必要解释我需要实现的内容,我想要的只是一个示例,您可以在其中为变量赋值,然后在case语句中使用它们,如上例所示。任何一个例子都会非常感激。
答案 0 :(得分:5)
我认为错误信息非常清楚:查询 分配变量或返回结果集,但不能同时返回两者。
这些是不兼容的:
SELECT @theSum,
@M3 = case . . .
也许你想要:
SELECT @M3 = case . . . ;
SELECT @theSum, @M3;