当前位置: 代码迷 >> SQL >> sql兑现日期降序,时间升序
  详细解决方案

sql兑现日期降序,时间升序

热度:44   发布时间:2016-05-05 15:08:47.0
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
  相关解决方案