Oracle trunc()函式的用法
--Oracle trunc()函式的用法
/**************日期********************/
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
8.select trunc(sysdate, 'mi') from dual --2011-3-18 14:41:00 TRUNC()函式沒有秒的精確
/***************數字********************/
/*
TRUNC(number,num_digits)
Number 需要截尾取整的數字。
Num_digits 用於指定取整精度的數字。Num_digits 的預設值為 0。
TRUNC()函式擷取時不進行四捨五入
*/
9.select trunc(123.458) from dual --123
10.select trunc(123.458,0) from dual --123
11.select trunc(123.458,1) from dual --123.4
12.select trunc(123.458,-1) from dual --120
13.select trunc(123.458,-4) from dual --0
14.select trunc(123.458,4) from dual --123.458
15.select trunc(123) from dual --123
16.select trunc(123,1) from dual --123
17.select trunc(123,-1) from dual --120
/**************日期********************/
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
8.select trunc(sysdate, 'mi') from dual --2011-3-18 14:41:00 TRUNC()函式沒有秒的精確
/***************數字********************/
/*
TRUNC(number,num_digits)
Number 需要截尾取整的數字。
Num_digits 用於指定取整精度的數字。Num_digits 的預設值為 0。
TRUNC()函式擷取時不進行四捨五入
*/
9.select trunc(123.458) from dual --123
10.select trunc(123.458,0) from dual --123
11.select trunc(123.458,1) from dual --123.4
12.select trunc(123.458,-1) from dual --120
13.select trunc(123.458,-4) from dual --0
14.select trunc(123.458,4) from dual --123.458
15.select trunc(123) from dual --123
16.select trunc(123,1) from dual --123
17.select trunc(123,-1) from dual --120
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/21302630/viewspace-1571856/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Oracle Trunc函式Oracle函式
- trunc函式函式
- 【Oracle SQL】months_between與trunc函式OracleSQL函式
- trunc與round函式函式
- 【TRUNC】使用TRUNC函式完成對時間的擷取函式
- round函式與trunc函式的使用方法函式
- 【Oracle的NVL函式用法】Oracle函式
- Oracle dump函式的用法Oracle函式
- Oracle 函式 Translate 的用法Oracle函式
- oracle的with函式用法示例Oracle函式
- oracle table()函式用法Oracle函式
- Oracle to_date()函式的用法Oracle函式
- 【轉】oracle的substr函式的用法Oracle函式
- 利用TRUNC函式定製JOB的時間間隔函式
- oracle資料庫常用分析函式與聚合函式的用法Oracle資料庫函式
- Oracle - DBMS_LOB函式和用法Oracle函式
- pipe row的用法, Oracle split 函式寫法.Oracle函式
- oracle中函式to_char()的用法介紹Oracle函式
- ascii函式和substr函式的用法ASCII函式
- GetModuleFileName函式的用法函式
- createStyleSheet()函式的用法函式
- qsort函式的用法函式
- COALESCE函式的用法。函式
- 巧用trunc函式,獲取某日期範圍內的資料函式
- Oracle 中的 ROW_NUMBER() OVER() 分析函式的用法Oracle函式
- Instr函式的用法函式
- fork()函式的基本用法函式
- openat()函式的用法示例函式
- Translate函式用法函式
- abs函式用法函式
- C語言中函式printf()和函式scanf()的用法C語言函式
- Oracle的regexp_like函式用法一例Oracle函式
- oracle聚合函式rank()的用法和一些體會Oracle函式
- C++ 函式 realloc 的用法C++函式
- PostgreSQL>視窗函式的用法SQL函式
- string 函式的基本用法函式
- Excel函式的初級用法Excel函式
- mysql中replace函式的用法MySql函式