【转】oracle查询当前时间前10分钟到当前时间的数据

select
      *
    from LG_GNLKXX_TEMP
    where
    delete_state =0 and (RZLX = 0 or RZLX = 1)
    and create_date >= to_date(to_char(sysdate-10/(24*60),‘yyyy-mm-dd hh24:mi:ss‘),‘yyyy-mm-dd hh24:mi:ss‘)
    and create_date <= to_date(to_char(sysdate,‘yyyy-mm-dd hh24:mi:ss‘),‘yyyy-mm-dd hh24:mi:ss‘)

 

【转】oracle查询当前时间前10分钟到当前时间的数据

原文:https://www.cnblogs.com/Guhongying/p/14765136.html

上一篇:KVELL:快速持续键值存储的设计与实现


下一篇:postgreSQL 临时表