从oracle数据库查询出的数据,按其中一个字段时间排序。..._百度知道
最佳答案: select * from (select 除了时间所有字段写出来,to_date('COMMENTTIME','yyyy-mm-dd hh24:mi:ss') time from T_SCHOOL_RECORDCOMMENT where RECORD...更多关于oracle 300万数据按时间倒序排列多少秒属于正常?的问题>>
如何实现数据库中记录按照时间列的时间顺序排列?_百度知道
用的时候设置一下排序就行了(order by),如果要倒序排列,就用order by {时间类型字段名} desc另外如果你的数据库是oracle,可以用to_char({时间类型字段名},'...更多关于oracle 300万数据按时间倒序排列多少秒属于正常?的问题>>
关于oracle中按时间排序问题,请教!!急!!!_百度知道
最佳答案: select distinct t.contentid,t.lastmodifytime from { select distinct noteid,contentid,lastmodifytime from tablename order by contentid desc } t...更多关于oracle 300万数据按时间倒序排列多少秒属于正常?的问题>>
Oracle中按照时间范围以及时间间隔抽取数据的问题_百度知道
最佳答案: SELECT * FROM 表名 A where a.CreateTime between to_date('2012-10-01 01:00:00','YYYY-MM-DD HH24:MI:SS') and to_date('2012-10-01...更多关于oracle 300万数据按时间倒序排列多少秒属于正常?的问题>>