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
- null
- Oracle
- 톰캣
- JSTL
- checbox
- 이클립스
- @RequestBody
- 전자정부 표준프레임워크
- MYSQL
- php
- java
- 한글
- 문자열
- switch
- 스크립트
- 웹 플랫폼 설치 관리자
- 네이버스마트 에디터
- HTML5
- jquery
- spring form tag
- SSL
- exception
- maven
- html
- DB
- 날짜
- RADIO
- 호환성
- json
- 오라클
Archives
- Today
- Total
개인적인 정리
[Oracle]REMAINDER() 본문
오라클 REMAINDER
REMAINDER
-
REMAINDER(n2, n1)
의 형태
REMAINDER returns the remainder of n2 divided by n1.
This function takes as arguments any numeric data type or any nonnumeric data type that can be implicitly converted to a numeric data type. Oracle determines the argument with the highest numeric precedence, implicitly converts the remaining arguments to that data type, and returns theat data type.
The MOD function is slmilar to REMAINDER except that is uses FLOOR in its formula, whereas REMAINDER uses ROUND.
SQL>SELECT MOD(111.001,1.7) FROM DUAL ;
---> 0.501
SQL>SELECT REMAINDER(111.001,1.7) FROM DUAL ;
---> 0.501
'DB > ORACLE' 카테고리의 다른 글
[Oracle]ROW_NUMBER() (0) | 2020.06.11 |
---|---|
[Oracle]ROUND(number) (0) | 2020.06.10 |
[Oracle]ROUND(date) (0) | 2020.06.10 |
[Oracle]REPLACE() (0) | 2020.06.10 |
[Oracle]REGEXP_SUBSTR() (0) | 2020.06.08 |
[Oracle]REGEXP_REPLACE() (0) | 2020.06.08 |
[Oracle] REGEXP_INSTR() (0) | 2020.04.21 |
[ORACLE] REGEXP_COUNT() (0) | 2020.04.21 |
Comments