1. 程式人生 > >mysql 排序兩個欄位/列表先根據時間升序排序,時間相同再根據商家ID升序排序

mysql 排序兩個欄位/列表先根據時間升序排序,時間相同再根據商家ID升序排序

select * from (select * from tablename order by last_time desc) as t order by t.id desc

order   by   last_time,id   desc 這種方式last_time預設是升序的


order   by   last_time   and   id   desc 這種方式兩個欄位都是降序的

應該先分組,
select id,last_time from yourtablename group by last_time order by last_time desc,id desc