sql按時間排序
發布時間: 2022-12-09 08:29:28
select * from 表 order by 時間欄位
這樣取出來的數據就是按時間排序了。
如果想數據不用order by 就是按時間排序的,需要把時間欄位設置成聚集索引。
『貳』 怎樣用SQL語句按日期進行從高到低進行排序
用SQL語句按日期進行從高到低進行排序:select * from tmp order by time desc;
『叄』 sql資料庫中時間類型如何排序
我們看到的是這種格式的字元串2009-10-18 10:49:25.00其實在資料庫內部記憶的是從1900到現在的毫秒數所以你排序的時候,是以。1900年到指定時期的毫秒數大小來排序的
『肆』 SQL 怎麼按時間排列
將欄位依次寫在order by 後面即可 , 中間用逗號隔開
select * from 表 order by time , name
select * from 表 order by time asc , name asc
select * from 表 order by time desc , name desc
select * from 表 order by time asc , name desc
select * from 表 order by time desc , name asc
(注: asc 表示升序 , desc表示降序 , 未明確寫明排序方式時默認是升序 )
熱點內容