gpt4 book ai didi

sql - 如何在同一个 SELECT 语句中使用 DISTINCT 和 ORDER BY?

转载 作者:行者123 更新时间:2023-12-03 04:50:53 25 4
gpt4 key购买 nike

执行以下语句后:

SELECT  Category  FROM MonitoringJob ORDER BY CreationDate DESC

我从数据库中获取以下值:

test3
test3
bildung
test4
test3
test2
test1

但我想删除重复项,如下所示:

bildung
test4
test3
test2
test1

我尝试使用 DISTINCT,但它不能在一个语句中与 ORDER BY 一起使用。请帮忙。

重要:

  1. 我尝试过:

    SELECT DISTINCT Category FROM MonitoringJob ORDER BY CreationDate DESC

    这不起作用。

  2. 按创建日期排序非常重要。

最佳答案

问题在于 ORDER BY 中使用的列未在 DISTINCT 中指定。为此,您需要使用 aggregate function进行排序,并使用 GROUP BY 使 DISTINCT 发挥作用。

尝试这样的事情:

SELECT DISTINCT Category, MAX(CreationDate) 
FROM MonitoringJob
GROUP BY Category
ORDER BY MAX(CreationDate) DESC, Category

关于sql - 如何在同一个 SELECT 语句中使用 DISTINCT 和 ORDER BY?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5391564/

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