zoukankan      html  css  js  c++  java
  • oracle sql日期比较

     
    oracle sql日期比较:
    在今天之前:
    select*from up_date whereupdate< to_date('2007-09-07 00:00:00','yyyy-mm-dd hh24:mi:ss')
    select*from up_date whereupdate<= to_date('2007-09-07 00:00:00','yyyy-mm-dd hh24:mi:ss')

    在今天只后:
    select*from up_date whereupdate> to_date('2007-09-07 00:00:00','yyyy-mm-dd hh24:mi:ss')
    select*from up_date whereupdate>= to_date('2007-09-07 00:00:00','yyyy-mm-dd hh24:mi:ss')

    精确时间:
    select*from up_date whereupdate= to_date('2007-09-07 00:00:00','yyyy-mm-dd hh24:mi:ss')

    在某段时间内:
    select*from up_date whereupdatebetween to_date('2007-07-07 00:00:00','yyyy-mm-dd hh24:mi:ss') and to_date('2007-09-07 00:00:00','yyyy-mm-dd hh24:mi:ss')
    select*from up_date whereupdate< to_date('2007-09-07 00:00:00','yyyy-mm-dd hh24:mi:ss') andupdate> to_date('2007-07-07 00:00:00','yyyy-mm-dd hh24:mi:ss')
    select*from up_date whereupdate<= to_date('2007-09-07 00:00:00','yyyy-mm-dd hh24:mi:ss') andupdate>= to_date('2007-07-07 00:00:00','yyyy-mm-dd hh24:mi:ss')
  • 相关阅读:
    【转】C++11优化使用emplace,emplace_back
    面试经历总结
    Hive常用函数
    股票指标
    Visual Studio Code 可以翻盘成功主要是因为什么?
    openpyxl模块操作Excel
    JavaScript(二)
    前端之CSS
    ps导出ICO格式
    Qt 所有版本官方下载地址
  • 原文地址:https://www.cnblogs.com/sopost/p/2275078.html
Copyright © 2011-2022 走看看