时间:2021-07-01 10:21:17 帮助过:18人阅读
查询系统时间 sysdate
select sysdate from dual;
对日期取整 trunc
select trunc(sysdate) from dual;
对月份的加函数 add_months ,last_day
select * from test where sysdate>add_months(hiredate,1); --hirdate+1个月,一个月前入职的员工
select last_day(hiredate) from test; --取没月的最后一天
Oracle函数的使用
标签: