일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- @RequestBody
- null
- 날짜
- json
- 웹 플랫폼 설치 관리자
- JSTL
- 전자정부 표준프레임워크
- checbox
- Oracle
- switch
- SSL
- php
- maven
- 스크립트
- MYSQL
- spring form tag
- HTML5
- jquery
- 이클립스
- 톰캣
- 네이버스마트 에디터
- DB
- html
- 호환성
- 오라클
- java
- 문자열
- exception
- RADIO
- 한글
- Today
- Total
개인적인 정리
ORACLE ADD_MONTHS(date, integer) 본문
ADD_MONTHS(date, integer)
- date 에 integer 를 더한 date를 return 한다. integer는 =, - 모두 가능
ADD_MONTHS returns the date date plus integer months. A month is defined by the session parameter NLS_CALENDAR. The date argument can be a datetime value or any value that can be implicitly converted to DATE. The integer agrument can be an integer or any value that can be implicitly converted to an integer. The return type is always DATE, regardless of the date type of date. If date is the last day of the month or if the resulting month has fewer days that the day component of date, then the result is the last day of the resulting month. Otherwise, the result has the same day component as date.
SQL> SELECT SYSDATE FROM DUAL ;
--> 2020/03/20 오전 9:49:04
SQL> SELECT ADD_MONTHS(SYSDATE, 3) FROM DUAL ;
--> 2020/06/20 오전 9:49:14
SQL> SELECT ADD_MONTHS(SYSDATE, -3) FROM DUAL ;
--> 2019/12/20 오전 9:49:51
SQL> SELECT ADD_MONTHS('2020-01-01', 3) FROM DUAL ;
--> ORA-01861: literal does not match format string
ADD_MONTHS 는 DATE 또는 DATETIME 형태를 인자로 받으니 '2020-01-01'처럼 들어가면 문자열로 인식해서 오류가 발생하는 것 같다. TO_DATE()를 이용해서 명시적으로 DATE 타입 형태로 변경해준다.
SQL> SELECT ADD_MONTHS(TO_DATE('2020-01-01', 'YYYY-MM-DD'), 3) FROM DUAL ;
--> 2020/04/01
'DB > ORACLE' 카테고리의 다른 글
ORACLE ASIN() (0) | 2020.03.24 |
---|---|
ORACLE ASCIISTR() (0) | 2020.03.24 |
ORACLE ASCII() 함수 (0) | 2020.03.23 |
ORACLE APPENDCHILDXML() 함수 (0) | 2020.03.23 |
Oracle ACOS(n) (0) | 2020.03.20 |
Oracle ABS(n) (0) | 2020.03.20 |
oci_connect() [function.oci-connect]: ORA-24408 (0) | 2019.11.08 |
TABLE EXPORT & IMPORT (CLOB 포함) (0) | 2019.05.14 |