Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 전자정부 표준프레임워크
- 오라클
- DB
- 한글
- exception
- null
- RADIO
- jquery
- MYSQL
- maven
- checbox
- 호환성
- switch
- 톰캣
- php
- 스크립트
- SSL
- 문자열
- HTML5
- @RequestBody
- html
- 네이버스마트 에디터
- JSTL
- json
- 날짜
- 이클립스
- 웹 플랫폼 설치 관리자
- java
- Oracle
- spring form tag
Archives
- Today
- Total
개인적인 정리
[Oracle]ROUND(date) 본문
오라클 ROUND(date)
ROUND(date)
-
ROUND(date)
ROUND(date, fmt)
의 형태
ROUND returns date rounded to the unit specified by the format model fmt. The function is not sensitive to the NLS_CALENDAR session parameter. It operates according to the rules of the Gregorian calendar. The value returned is always of data type DATA, even if you specify a different datetime data type for date. If you moit fmt, then date is rounded to the nearest day. The date expression must resolve to a DATE value.
SQL > SELECT ROUND(TO_DATE('2020-05-01', 'YYYY-MM-DD'), 'YEAR') FROM DUAL ;
--> 2020/01/01
SQL> SELECT ROUND(TO_DATE('2020-05-22', 'YYYY-MM-DD'), 'MONTH') FROM DUAL ;
--> 2020/06/01
'DB > ORACLE' 카테고리의 다른 글
[Oracle]RTRIM() (0) | 2020.06.11 |
---|---|
[Oracle]RPAD() (0) | 2020.06.11 |
[Oracle]ROW_NUMBER() (0) | 2020.06.11 |
[Oracle]ROUND(number) (0) | 2020.06.10 |
[Oracle]REPLACE() (0) | 2020.06.10 |
[Oracle]REMAINDER() (0) | 2020.06.10 |
[Oracle]REGEXP_SUBSTR() (0) | 2020.06.08 |
[Oracle]REGEXP_REPLACE() (0) | 2020.06.08 |
Comments