gpt4 book ai didi

php - sql 使用 start_time 和 end_time 进行复杂数据排序

转载 作者:行者123 更新时间:2023-11-29 11:06:03 24 4
gpt4 key购买 nike

我有一个名为“activity”的 MySQL 表,其中包含事件数据。重要的列是“start_time”和“end_time”,其中包含字符串(YYYY-MM-DD)来表示事件的开始和结束时间。

我想一次获取一些记录。有点像分页。问题是我需要对数据进行排序。排序规则:

 1:data which current time between start_time and end_time row first
2:data which current time before start_time second
3:data which current time after end_time last

事件:

--------------------------------
ID | START_TIME | END_TIME|
--------------------------------
1 | 2013-06-14 | 2013-06-14 |
2 | 2013-07-01 | 2013-07-10 |
3 | 2013-07-30 | 2013-07-31 |
4 | 2013-06-15 | 2013-08-21 |
5 | 2013-06-22 | 2013-06-25 |
------------------------------

你不知道该怎么做吗?有什么建议吗?

谢谢!例子: 今天是 2013-06-23。我需要这样的数据:

 --------------------------------
ID | START_TIME | END_TIME|
--------------------------------
4 | 2013-06-15 | 2013-08-21 |
5 | 2013-06-22 | 2013-06-25 |
2 | 2013-07-01 | 2013-07-10 |
3 | 2013-07-30 | 2013-07-31 |
1 | 2013-06-14 | 2013-06-14 |
------------------------------

最佳答案

您可以按 case 有条件地订购,如下所示:

select *
from table
order by
case
when '2013-06-23' >= start_time and '2013-06-23' <= end_time then 0
when '2013-06-23' < start_time then 1
else 2 end,
start_time, end_time, id;

关于php - sql 使用 start_time 和 end_time 进行复杂数据排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41393897/

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