巧用trunc函式,獲取某日期範圍內的資料
先看trunc函式日期的用法:
select trunc(sysdate) from dual; --2014/3/5 今天的日期為2011-3-18
select trunc(sysdate, 'mm') from dual; --2014/3/1 返回當月第一天.
select trunc(sysdate, 'yy') from dual; --2014/1/1 返回當年第一天
select trunc(sysdate, 'dd') from dual; --2014/3/5 返回當前年月日
select trunc(sysdate, 'yyyy') from dual; --2014/1/1 返回當年第一天
select trunc(sysdate, 'd') from dual; --2014/3/2 (星期天)返回當前星期的第一天
select trunc(sysdate, 'hh') from dual; --2014/3/5 10:00:00 當前時間為14:41
select trunc(sysdate, 'mi') from dual; --2014/3/5 10:57:00。
例:表t1有如下資料
SQL> select *from t1 ;
YYYYMMDD NAME
---------- --------
20140201 LIU
20140205 YANG
20140227 MA
20140228 Li
20140301 WU
20140302 WANG
20140303 DONG
需求:根據入參yyyymmdd日期欄位做查詢判斷,若yyyymmdd為當月的前三天(即dd<3)則查詢上月至當天的資料,否則查詢當月的所有資料。
求解程式碼如下:
SQL> with t1 as (select to_date('20140201','yyyymmdd') yyyymmdd, 'LIU' name from dual
2 union select to_date('20140205','yyyymmdd') yyyymmdd, 'YANG' name from dual
3 union select to_date('20140227','yyyymmdd') yyyymmdd, 'MA' name from dual
4 union select to_date('20140228','yyyymmdd') yyyymmdd, 'LI' name from dual
5 union select to_date('20140301','yyyymmdd') yyyymmdd, 'WU' name from dual
6 union select to_date('20140302','yyyymmdd') yyyymmdd, 'WANG' name from dual
7 union select to_date('20140303','yyyymmdd') yyyymmdd, 'DONG' name from dual
8 )
9 select * from t1 where yyyymmdd between case when to_char(&&v_date,'dd')
10 trunc(add_months(&v_date,-1),'mm') else trunc(&v_date,'mm') end
11 and case when to_char(&v_date,'dd')
12 else trunc(last_day(&v_date),'dd') end
13 /
輸入 v_date 的值: sysdate
原值 9: select * from t1 where yyyymmdd between case when to_char(&&v_date,'dd')
新值 9: select * from t1 where yyyymmdd between case when to_char(sysdate,'dd')
原值 10: trunc(add_months(&v_date,-1),'mm') else trunc(&v_date,'mm') end
新值 10: trunc(add_months(sysdate,-1),'mm') else trunc(sysdate,'mm') end
原值 11: and case when to_char(&v_date,'dd')
新值 11: and case when to_char(sysdate,'dd')
原值 12: else trunc(last_day(&v_date),'dd') end
新值 12: else trunc(last_day(sysdate),'dd') end
YYYYMMDD NAME
-------------- ----
01-3月 -14 WU
02-3月 -14 WANG
03-3月 -14 DONG
附 trunc函式數字用法如下:
select trunc(123.458) from dual; --123
select trunc(123.458, 0) from dual; --123
select trunc(123.458, 1) from dual; --123.4
select trunc(123.458, -1) from dual; --120
select trunc(123.458, -4) from dual; --0
select trunc(123.458, 4) from dual; --123.458
select trunc(123) from dual; --123
select trunc(123, 1) from dual; --123
select trunc(123, -1) from dual; --120
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/21251711/viewspace-1102673/,如需轉載,請註明出處,否則將追究法律責任。
請登入後發表評論
登入
全部評論
相關文章
- 使用 Carbon 獲取指定時間範圍內的日期陣列陣列
- TypeScript 2 : 獲取當前日期及前後範圍日期【Array】TypeScript
- 【TRUNC】使用TRUNC函式完成對時間的擷取函式
- trunc函式函式
- Swift 3 獲取某個日期的星座Swift
- Oracle Trunc函式Oracle函式
- 百度API獲取位置範圍內的周邊服務API
- 【SQL】獲取指定範圍內結果集的實現方法SQL
- Oracle trunc()函式的用法Oracle函式
- trunc與round函式函式
- UPDATE查詢結果範圍內的資料
- round函式與trunc函式的使用方法函式
- java判斷集合是否包含某個範圍內的值Java
- Js之設定日期時間 判斷日期是否在範圍內JS
- MYSQL 一個巧用字元函式巧用字元函式做資料篩選的題MySql字元函式
- 計算某個範圍內的質數和的辦法
- 【VPD】使用Oracle VPD(Virtual Private Database)限制使用者獲取資料的範圍OracleDatabase
- redis如何獲取有序集合指定範圍的個數Redis
- php獲取遠端檔案內容的函式PHP函式
- 6-3 使用函式輸出指定範圍內的完數 (20分)函式
- C語言——使用函式輸出指定範圍內的Fibonacci數C語言函式
- 生成某個範圍的隨機數隨機
- 智慧手環圍欄資料API獲取API
- 獲取某庫某個儲存過程內容儲存過程
- 關於 Date 函式獲取各類時間/日期/天數函式
- Oracle日期時間範圍查詢Oracle
- 資料型別範圍資料型別
- int/double資料範圍
- 獲取某個資料所在資料列表中的行數 mysqlMySql
- 巧用PHP函式或常量快速獲取PHP版本號、最大檔名長度PHP函式
- 列舉範圍內的字串字串
- 如何利用框選工具獲取多邊形範圍?
- 6-1 使用函式輸出指定範圍內Fibonacci數的個數函式
- matlab 從某個範圍內隨機取出一個整數Matlab隨機
- oracle function函式_獲取某個字串中指定的字串出現的次數OracleFunction函式字串
- JS判定一個給定的時間在某個時間範圍內JS
- 【Oracle SQL】months_between與trunc函式OracleSQL函式
- MySQL-日期和資料處理函式MySql函式