oralce trunc用法
文章內(nèi)容復制匯聚別人的,供以后學習參考用。
?
前一月 最后一天 ?? select last_day(add_months(sysdate,-1)) from dual; ??
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? select to_char(last_day(add_months(sysdate,-1))) from dual; ?
前一月 第一天 ? ? ? select add_months(last_day(add_months(sysdate,-1))+1,-1) from dual; ? ?
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? select to_char(add_months(last_day(add_months(sysdate,-1))+1,-1)) from dual; ? ??
本月第一天? ? ? ? ? ?select trunc(add_months(last_day(sysdate), -1) + 1) from dual
本月最后一天? ? ? ? to_char(last_day(sysdate), 'yyyy-mm-dd')?
--Oracle trunc()函數(shù)的用法
/**************日期********************/
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()函數(shù)沒有秒的精確
/***************數(shù)字********************/
/*
TRUNC(number,num_digits)
Number 需要截尾取整的數(shù)字。
Num_digits 用于指定取整精度的數(shù)字。Num_digits 的默認值為0。
TRUNC()函數(shù)截取時不進行四舍五入
*/
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
總結(jié)
以上是生活随笔為你收集整理的oralce trunc用法的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 什么是JUnit
- 下一篇: 最新百度文库下载软件,还能下载源文件!