当前位置:Gxlcms > 数据库问题 > Oracle函数的使用

Oracle函数的使用

时间:2021-07-01 10:21:17 帮助过:18人阅读

into test (birthday,name) values (to_date(2016-03-12,yyyy-mm-dd),zy);

查询系统时间 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函数的使用

标签:

人气教程排行