select start_time from table where start_time < unix_timestamp() order by start_time desc union select start_time from table where start_time >= unix_timestamp() order by start_time asc
@hellojinjie 测试了一下,然后发现 order by子句必须写在最后一个结果集里,并且其排序规则将改变操作后的排序结果。 所以问题还是没有解决。。。
imxz
2014-07-17 13:50:50 +08:00
这样子就行了:
select * from (select * from `table` where `start_time` >= unix_timestamp() order by `start_time` asc)tmpa union select * from (select * from `table` where `start_time` < unix_timestamp() order by `start_time` desc)tmpb
第 1 页 / 共 1 页
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。