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 | 31 |
Tags
- MYSQL
- checbox
- SSL
- DB
- 호환성
- maven
- HTML5
- html
- 톰캣
- 전자정부 표준프레임워크
- spring form tag
- Oracle
- switch
- RADIO
- 날짜
- null
- 문자열
- 네이버스마트 에디터
- exception
- java
- 오라클
- 스크립트
- json
- 웹 플랫폼 설치 관리자
- @RequestBody
- jquery
- php
- 이클립스
- 한글
- JSTL
Archives
- Today
- Total
개인적인 정리
Oracle GREATEST() 본문
오라클 GREATEST()
GREATEST returns the greatest of a list of one more expressions. Oracle Database uses the first expr to determine the return type. If the first expr is numeric, then Oracle determines the argument with the highest numeric precedence, implicitly converts the remaining arguments to that data type before the comparsion, and returns that data type. If the first expr is not numeric, then each expr after the first is implicitly converted to the data type of the first expr before the comparision.
SQL > SELECT GREATEST('HARRY', 'HARRIOT', 'HAROLD') FROM DUAL ;
--> HARRY
SQL> SELECT GREATEST(1, 2, 3) FROM DUAL ;
--> 3
'DB > ORACLE' 카테고리의 다른 글
Oracle INSTR() (0) | 2020.04.06 |
---|---|
Oracle INSERTCHILDXML() (0) | 2020.04.06 |
Oracle INITCAP() (0) | 2020.04.06 |
Oracle GROUP_ID() (0) | 2020.04.06 |
ORACLE FLOOR() (0) | 2020.03.30 |
ORACLE FIRST() (0) | 2020.03.30 |
ORACLE EXTRACT() (0) | 2020.03.30 |
ORACLE EXP() (0) | 2020.03.30 |
Comments