oracle中的trunc()用法和add_months()用法

TRUNC函数用于对值进行截断。

用法有两种:TRUNC(NUMBER)表示截断数字,TRUNC(date)表示截断日期。

(1)截断数字:

格式:TRUNC(n1,n2),n1表示被截断的数字,n2表示要截断到那一位。n2可以是负数,表示截断小数点前。注意,TRUNC截断不是四舍五入。

SQL> select TRUNC(15.79) from dual;

TRUNC(15.79)
————
15

SQL> select TRUNC(15.79,1) from dual;

TRUNC(15.79,1)
————–
15.7

SQL> select trunc(15.79,-1) from dual;

TRUNC(15.79,-1)
—————
10

(2)截断日期:

先执行命令:alter session set nls_date_format=’yyyy-mm-dd hh24:mi:hh’;

截取今天:

SQL> select sysdate,trunc(sysdate,’dd’) from dual;

SYSDATE             TRUNC(SYSDATE,’DD’)
——————- ——————-
2009-03-24 21:31:17 2009-03-24 00:00:00

截取本周第一天:

SQL> select sysdate,trunc(sysdate,’d’) from dual;

SYSDATE             TRUNC(SYSDATE,’D’)
——————- ——————-
2009-03-24 21:29:32 2009-03-22 00:00:00

截取本月第一天:

SQL> select sysdate,trunc(sysdate,’mm’) from dual;

SYSDATE             TRUNC(SYSDATE,’MM’)
——————- ——————-
2009-03-24 21:30:30 2009-03-01 00:00:00

截取本年第一天:

SQL> select sysdate,trunc(sysdate,’y’) from dual;

SYSDATE             TRUNC(SYSDATE,’Y’)
——————- ——————-
2009-03-24 21:31:57 2009-01-01 00:00:00

截取到小时:

SQL> select sysdate,trunc(sysdate,’hh’) from dual;

SYSDATE             TRUNC(SYSDATE,’HH’)
——————- ——————-
2009-03-24 21:32:59 2009-03-24 21:00:00

截取到分钟:

SQL> select sysdate,trunc(sysdate,’mi’) from dual;

SYSDATE             TRUNC(SYSDATE,’MI’)
——————- ——————-
2009-03-24 21:33:32 2009-03-24 21:33:00

获取上月第一天:

SQL> select TRUNC(add_months(SYSDATE,-1),’MM’) from dual

add_months

oracle add_months(time,months)函数可以得到某一时间之前或之后n个月的时间

  1. 如 select add_months(sysdate,-6) from dual;

该查询的结果是当前时间半年前的时间

  1. select add_months(sysdate,6) from dual;

该查询的结果是当前时间半年后的时间

===================================================================

–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

发表回复