✎
编程开发网
首页
C语言
C++
面试
Linux
函数
Windows
数据库
下载
搜索
当前位置:
首页
->
基础
->
数据库编程
sql实现日期降序,时间升序的方法
2014-11-24 08:38:50
·
作者:
·
浏览:
1
标签:
sql
实现
日期
时间
方法
sql实现日期降序,时间升序的方法
SELECT
type,
create_date,
substr(create_date,1,10) as d,
substr(create_date,12) as t
FROM
history_received_message order by d desc,t asc
作者 ffyhappy