Oracle trunc()函數的用法,oracletrunc

來源:互聯網
上載者:User

Oracle trunc()函數的用法,oracletrunc

  --Oracle trunc()函數的用法
/**************日期  TRUNC()函數沒有秒的精確 ********************/

select sysdate from dual --當時日期

select trunc(sysdate) from dual

select trunc(sysdate ,'DD') from dual --今天日期

select trunc(sysdate,'d')+7 from dual --本周星期日

select trunc(sysdate,'dy')+7 from dual  --本周星期日

select trunc(sysdate,'day')+7 from dual --本周星期日

select trunc(sysdate,'q') from dual--本季開始日期

select trunc(sysdate,'month') from dual --本月開始日期

select trunc(sysdate ,'mm') from dual --本月開始日期

select trunc(sysdate,'year') from dual  --本年開始日期

select trunc(sysdate ,'yyyy') from dual --本年開始日期

select trunc(sysdate ,'HH24') from dual --本小時開始時間

select trunc(sysdate ,'MI') from dual --本分鐘開始時間

select trunc(sysdate ,'CC') from dual --本世紀開始時間

select trunc(LAST_DAY(sysdate),'dd') from dual --本月最後一天


round(10.2356,2)函數可以對數字按指定保留小數位元四捨五入,這個函數還可以對日期四捨五入

select round(sysdate,'yyyy') from dual 四捨五入到年

select round(sysdate,'mm') from dual 四捨五入到月

select round(sysdate,'dd') from dual 四捨五入到日

select round(sysdate,'hh') from dual 四捨五入到小時

select round(sysdate,'mi') from dual 四捨五入到分鐘

 

/***************數字********************/
/*
TRUNC(number,num_digits) 
Number 需要截尾取整的數字。 
Num_digits 用於指定取整精度的數字。Num_digits 的預設值為 0。
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



相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.