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

时间:2016-12-30 09:37:37

标签: php mysql

我有一个名为' 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 |
------------------------------

1 个答案:

答案 0 :(得分:1)

您可以像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;