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

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

    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')

 

转载于:https://my.oschina.net/u/3023191/blog/1838832

你可能感兴趣的:(oracle查询当前时间前10分钟到当前时间的数据)