當月第一天 select trunc(sysdate, ‘mm’) from dual
當年第一天 select trunc(sysdate,‘yy’) from dual
當前年月日 select trunc(sysdate,‘dd’) from dual
當年第一天 select trunc(sysdate,‘yyyy’) from dual
當前星期的第一天 (也就是星期天) select trunc(sysdate,‘d’) from dual
當前日期 select trunc(sysdate) from dual
當前時間(準確到小時) select trunc(sysdate, ‘hh’) from dual
當前時間(準確到分鐘) select to_char(trunc(sysdate, ‘mi’),‘yyyy-MM-dd HH:mm:ss’) from dual
前一天的日期 select TRUNC(SYSDATE - 1) from dual
前一個月的日期 select add_months(trunc(sysdate),-1) from dual
後一個月的日期 select add_months(trunc(sysdate),1) from dual
本月最後一天 select to_char(last_day(sysdate), ‘yyyy-mm-dd’) from dual
沒有留言:
張貼留言