如何按多个时间戳字段排序并按时间顺序返回它们?

时间:2017-06-07 11:40:53

标签: mysql sql sorting pagination sql-order-by

我有一个帖子表(新闻),但他们可以有不同的日期属性,其中一些可能未设置(0)。我想在所有字段上订购DESC,然后得到一个遵循时间顺序的结果,而不是我在查询中给出的顺序。

title | pubdate     | startdate  | enddate     | closedate  |
------------------------------------------------------------
exm1  | 1271887200  |          0 |          0  |          0 |
exm2  | 1291071600  |          0 |          0  |          0 |
exm3  |          0  | 1496102400 | 1496361600  |          0 |
exm4  | 1496620800  |          0 |          0  |          0 |
exm5  |          0  | 1501545600 | 1501891200  | 1496966400 |
exm6  |          0  | 1493856000 | 1496361600  |          0 |

相关字段为“pubdate”,“startdate”或“closedate”。所以我所做的只是将它们放入我的ORDER BY语句中:

SELECT * FROM news ORDER BY closedate DESC, startdate DESC, pubdate DESC

这当然有效,但是我注意到这总是将“closeate”行放在结果的前面,然后是“startdate”结果等等。并且排序只发生在那些切片中而不是跨越所有值。它们被视为一组不同的缝合在一起。

结果是:exm5,exm3,exm6,exm4,exm2,exm1

但我想要以下内容:exm5,exm4,exm3,exm6,exm2,exm1

原因:

- exm5 close is 06.09.2017 (and pub is 0)
- exm4 pub   is 06.05.2017 (and close is 0 and enddate is 0)
- exm3 start is 05.30.2017 (and close is 0 and pub is 0)
- exm6 start is 05.04.2017 (and close is 0 and pub is 0)

我可以通过代码应用这种排序,但我想对此查询使用LIMIT和偏移量,保持分页顺序。

我觉得我不得不合并这些值并对单个字段进行排序,但我不知道如何做到这一点,或者只有MYSQL才能实现。

有什么想法吗?感谢。

1 个答案:

答案 0 :(得分:1)

也许greatest()可以满足您的需求:

ORDER BY GREATEST(closedate, startdate, pubdate) DESC

您似乎使用0来表示缺失值。如果是这样,这很好。如果你实际上有NULL s,那么逻辑需要处理它们。

编辑:

如果您有优先权,请使用:

ORDER BY (CASE WHEN closeddate > 0 THEN closeddate
               WHEN startdate > 0 THEN startdate
               ELSE pubdate
          END)

这适用于NULL值。