就用大于、小于、等于號to_date(sysdate,'yyyy-mm-dd')就可以進(jìn)行日期、時間類型的比較。
我們提供的服務(wù)有:網(wǎng)站制作、網(wǎng)站建設(shè)、微信公眾號開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、南票ssl等。為1000多家企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的南票網(wǎng)站制作公司
1 條件是獲取當(dāng)前日期的前90天到前60的數(shù)據(jù)
2 條件語句為:and 表名.字段名 between to_date(to_char(sysdate-89,'yyyy-MM-dd'),"yyyy-MM-dd") and to_date(to_char(sysdate-59,'yyyy-MM-dd'),"yyyy-MM-dd")
3 知識點:Oracle to_date() 與 to_char() 日期和字符串轉(zhuǎn)換
1、to_date("要轉(zhuǎn)換的字符串","轉(zhuǎn)換的格式") 兩個參數(shù)的格式必須匹配,否則會報錯。即按照第二個參數(shù)的格式解釋第一個參數(shù)。
2、to_char(日期,"轉(zhuǎn)換格式" ) 即把給定的日期按照“轉(zhuǎn)換格式”轉(zhuǎn)換。
3、轉(zhuǎn)換的格式:
表示year的:y 表示年的最后一位 yy 表示年的最后2位 yyy 表示年的最后3位 yyyy 用4位數(shù)表示年
表示month的:mm 用2位數(shù)字表示月;mon 用簡寫形式 比如11月或者nov ;month 用全稱 比如11月或者november
表示day的:dd 表示當(dāng)月第幾天;ddd表示當(dāng)年第幾天;dy 當(dāng)周第幾天 簡寫 比如星期五或者fri;day當(dāng)周第幾天 全寫比如星期五或者friday。
表示hour的:hh 2位數(shù)表示小時 12進(jìn)制; hh24 2位數(shù)表示小時 24小時
表示minute的:mi 2位數(shù)表示分鐘
表示second的:ss 2位數(shù)表示秒 60進(jìn)制表示季度的:q 一位數(shù) 表示季度 (1-4)
另外還有ww 用來表示當(dāng)年第幾周 w用來表示當(dāng)月第幾周。
24小時制下的時間范圍:00:00:00-23:59:59
12小時制下的時間范圍:1:00:00-12:59:59比如:select to_char(sysdate,'yy-mm-dd hh24:mi:ss') from dual //顯示:08-11-07 13:22:42select to_date('2005-12-25,13:25:59','yyyy-mm-dd,hh24:mi:ss') from dual //顯示:2005-12-25 13:25:59
而如果把上式寫作:select to_date('2005-12-25,13:25:59','yyyy-mm-dd,hh:mi:ss') from dual,則會報錯,因為小時hh是12進(jìn)制,13為非法輸入,不能匹配。
1、創(chuàng)建測試表,
create table test_date(id number, times date);
2、插入測試數(shù)據(jù)
insert into test_date select level, sysdate-level/24/60 t from dual connect by level = 100;
commit;
3、查詢表中數(shù)據(jù),select t.* from test_date t;
4、編寫sql,獲取加5分鐘大于等于當(dāng)前系統(tǒng)時間的記錄; select t.* from test_date t where times+5/24/60=sysdate;