常用sql(oracle)的時間查詢
阿新 • • 發佈:2021-11-25
按日期查詢:
SELECT * FROM ge_bill_biz_type WHERE biz_type='29' andto_char(created_time,'yyyy-mm-dd')='2021-09-18'
sql server 按時間段查詢
oracle時間的獲取
1.select trunc(sysdate) from dual --2011-3-18 今天的日期為2011-3-18
2.select trunc(sysdate, 'mm') from dual --2011-3-1 返回當月第一天.
3.select trunc(sysdate,'yy') from dual --2011-1-1 返回當年第一天
4.select trunc(sysdate,'dd') from dual --2011-3-18 返回當前年月日
5.select trunc(sysdate,'yyyy') from dual --2011-1-1 返回當年第一天
6.select trunc(sysdate,'d') from dual --2011-3-13 (星期天)返回當前星期的第一天
7.select trunc(sysdate, 'hh') from dual --2011-3-18 14:00:00 當前時間為14:41
十天前-今天內的所有記錄(例:2021-09-18(含)至2021-09-28(含)):
select * from ge_bill_info where created_time>=trunc(sysdate-10,'dd')
參考:oracle查詢本月第一天_oracle獲取本月第一天和最後一天及Oracle trunc()函式的用法..._weixin_39566593的部落格-CSDN部落格