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
- 날짜
- switch
- @RequestBody
- 톰캣
- DB
- 한글
- JSTL
- java
- json
- checbox
- RADIO
- exception
- 오라클
- HTML5
- 웹 플랫폼 설치 관리자
- spring form tag
- 스크립트
- Oracle
- maven
- php
- 이클립스
- SSL
- 문자열
- 호환성
- null
- 네이버스마트 에디터
- 전자정부 표준프레임워크
- html
- jquery
- MYSQL
Archives
- Today
- Total
개인적인 정리
[Oracle] MOD() 본문
오라클 MOD()
MOD()
-
MOD(n2, n1)
의 형태
MOD returns the remainder of n2 divided by n1. Returns n2 if n1 is 0.
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 that data type.
SQL> SELECT MOD(11, 4) FROM DUAL ;
--> 3
This function behaves differently from the classical mathematical modulus function where n2 is negative. The classical modulus can be expressed using the MOD function with this formula :
n2 -n1 * FLOOR(n2/n1)
'DB > ORACLE' 카테고리의 다른 글
[Oracle] NEXT_DAY() (0) | 2020.04.10 |
---|---|
[Oracle] NCHR() (0) | 2020.04.10 |
[Oracle] NANVL() (0) | 2020.04.10 |
[Oracle] MONTHS_BETWEEN() (0) | 2020.04.10 |
[Oracle] MIN() (0) | 2020.04.09 |
[Oracle] MEDIAN() (0) | 2020.04.09 |
[Oracle] MAX() (0) | 2020.04.09 |
[Oracle] LTRIM() (0) | 2020.04.08 |
Comments