trunc與round函式
--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()函式擷取時不進行四捨五入
1.select trunc(123.458,1) from dual --123.4
2.select trunc(123.458,-1) from dual --120
3.select trunc(123.458,-4) from dual --0
4.select trunc(123.458,4) from dual --123.458
5.select trunc(123) from dual --123
6.select trunc(123,1) from dual --123
7.select trunc(123,-1) from dual --120
8.select trunc(123.458) from dual --123
9.select trunc(123.658) from dual --123
10.select trunc(123.458,0) from dual --123
=========================================================
round()函式擷取時要進行四捨五入
1.select round(123.358) from dual --123
2.select round(123.658) from dual --124
3.select round(123.358,2) from dual --123.36
4.select round(123.358,4) from dual --123.358
5.select round(123.358,-1) from dual --120
6.select round(126.358,-1) from dual --130
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()函式擷取時不進行四捨五入
1.select trunc(123.458,1) from dual --123.4
2.select trunc(123.458,-1) from dual --120
3.select trunc(123.458,-4) from dual --0
4.select trunc(123.458,4) from dual --123.458
5.select trunc(123) from dual --123
6.select trunc(123,1) from dual --123
7.select trunc(123,-1) from dual --120
8.select trunc(123.458) from dual --123
9.select trunc(123.658) from dual --123
10.select trunc(123.458,0) from dual --123
=========================================================
round()函式擷取時要進行四捨五入
1.select round(123.358) from dual --123
2.select round(123.658) from dual --124
3.select round(123.358,2) from dual --123.36
4.select round(123.358,4) from dual --123.358
5.select round(123.358,-1) from dual --120
6.select round(126.358,-1) from dual --130
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/30152793/viewspace-1454374/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- round函式與trunc函式的使用方法函式
- trunc函式函式
- Oracle Trunc函式Oracle函式
- 【Oracle SQL】months_between與trunc函式OracleSQL函式
- Oracle trunc()函式的用法Oracle函式
- 【TRUNC】使用TRUNC函式完成對時間的擷取函式
- ROUND(x,y)與TRUNC(x,y)函式中y引數值為省略、空值與null的區別函式Null
- mysql——ROUND與TRUNCATE函式之比較MySql函式
- 利用TRUNC函式定製JOB的時間間隔函式
- 巧用trunc函式,獲取某日期範圍內的資料函式
- php取整函式ceil,floor,round,intval函式的區別PHP函式
- 按小時,分鐘,秒;統計之 round和trunc區別
- iOS中round/ceil/floorf函式的應用iOS函式
- fork函式與vfork函式函式
- 【函式】Oracle EXTRACT()函式與to_char() 函式函式Oracle
- python3 的 round 函式的 練習Python函式
- MySQL 之 ROUND 函式四捨五入的陷阱MySql函式
- 聚合函式與數字函式函式
- 宣告與函式、函式指標函式指標
- 函式節流與函式防抖函式
- 回撥函式 與 函式閉包函式
- Oracle分析函式與視窗函式Oracle函式
- 建構函式與解構函式函式
- Python函式與lambda 表示式(匿名函式)Python函式
- 何時使用函式表示式與函式宣告函式
- echo與函式函式
- webgl內建函式--幾何函式與矩陣函式Web函式矩陣
- webgl內建函式--向量函式與紋理查詢函式Web函式
- 函式與極限 第一節 對映與函式函式
- 箭頭函式與普通函式區別函式
- 函式外與函式內的變數函式變數
- 簡單的printf函式與scnaf函式函式
- ORACLE單行函式與多行函式之七:多行函式之分組函式示例Oracle函式
- ORACLE單行函式與多行函式之二:字元函式示例Oracle函式字元
- ORACLE單行函式與多行函式之三:數值函式Oracle函式
- ORACLE單行函式與多行函式之四:日期函式示例Oracle函式
- ORACLE單行函式與多行函式之六:通用函式示例Oracle函式
- js操作日期(函式,js版的dateAdd與dateDiff,四捨五入(round()方法)並保留小數點後N位的函式)JS函式