Oracle中add_months()函数的用法
查询当前时间1个月以前的时间:
select add_months(sysdate,-1) from dual;
查询当前时间1个月以后的时间:
select add_months(sysdate,1) from dual;
如对公司员工表:查询2年前进入公司的员工的姓名:
select Ename from Company where sysdate >add_months(time,2*12);
无为而治