Oracle SQL日期比較和常用日期函式
阿新 • • 發佈:2019-02-10
一、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