例如,您可能需要识别2个日期周期块并使用条件顺序
鉴于
drop table if exists t;
create table t (id int auto_increment primary key, dt date);
insert into t (dt) values
('2017-02-01'),('2017-10-01'),('2017-01-01'),
('2016-02-01'),('2016-10-01'),('2016-01-01');
select s.id,s.dt
from
(
select 1 as srce,id,t.dt dt from t where dt > str_to_date('2016-12-31','%Y-%m-%d')
union all
select 2,id,t.dt from t where dt <= str_to_date('2016-12-31','%Y-%m-%d')
) s
order by srce asc,
case when s.srce = 1 then s.dt end asc,
case when s.srce = 2 then s.dt end desc;
+----+------------+
| id | dt |
+----+------------+
| 3 | 2017-01-01 |
| 1 | 2017-02-01 |
| 2 | 2017-10-01 |
| 5 | 2016-10-01 |
| 4 | 2016-02-01 |
| 6 | 2016-01-01 |
+----+------------+
6 rows in set (0.00 sec)