gpt4 book ai didi

sql - case when 语句中按列号对表进行排序

转载 作者:行者123 更新时间:2023-12-02 09:09:33 24 4
gpt4 key购买 nike

是否可以在 case when 语句中对带有列号的表进行排序?这是代码

;WITH
Table1 AS (....),
Table2 AS (....)

INSERT INTO #temp
SELECT TOP 50
one.id,
one.sales,
two.count,
one.sales * two.count as 'Volume %'
FROM Table1 one,
INNER JOIN Table2 two on one.id = two.id
ORDER BY
CASE @order
WHEN 1 THEN
7 ---Column number here since [Volume %] giving me an error
WHEN 2 THEN
10 ---Column number
END
DESC

最佳答案

我做了一些测试并了解到,虽然直接 ORDER BY 可以引用列别名(即使是带有空格字符的列别名),但 ORDER BY 中的 CASE 表达式却不能。我从未在任何地方看到过此记录,但我自己测试过。

别名中是否有特殊字符并不重要。如果你只做了:

one.sales * two.count as Volume   

您仍然会收到以下错误:

  ORDER BY CASE @order
WHEN 1 THEN Volume

我怀疑这就是不能使用列号的相同原因。

作为解决此问题的可靠方法,我的建议是:

  ORDER BY CASE @order
WHEN 1 THEN one.sales * two.count

关于sql - case when 语句中按列号对表进行排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54133093/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com