php mysql 时间排序

1时间从远到近排序输出 mysql语句2 时间从进到远 时间排序 mysql语句
2024-12-28 21:55:16
推荐回答(2个)
回答1:

select * from table order by 时间字段1 asc,时间字段2 desc

以上是两个时间字段,按时间1升序,时间2降序!

如果你只有一个时间段的时间,并且每次查询排序的话,就用楼上的代码!

回答2:

select * from table order by 时间字段 asc
select * from table order by 时间字段 desc