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表示降序 , 未明确写明排序方式时默认是升序 )
热点内容