使用trunc()函数获取不同的日期: select trunc(sysdate) from dual; --今天的日期 select trunc(sysdate,'dd') from dual; --返回当前年月日 select trunc(sysdate, 'mm') from dual; --返回当月第一天. ) ), 'yyyy-mm-dd' ) from dual;--获取本月第一天 select to_char(last_day(sysdate), 'yyyy-mm-dd') fro…