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
- Oracle
- 오라클
- 전자정부 표준프레임워크
- HTML5
- @RequestBody
- JSTL
- null
- checbox
- 네이버스마트 에디터
- 문자열
- 웹 플랫폼 설치 관리자
- 날짜
- 호환성
- php
- SSL
- 스크립트
- 이클립스
- RADIO
- jquery
- DB
- maven
- html
- spring form tag
- 톰캣
- 한글
- exception
- switch
- json
- java
Archives
- Today
- Total
개인적인 정리
[Oracle] LOG() 본문
오라클 LOG()
LOG()
-
LOG(n2, n1)
의 형태
LOG returns the logarithm, base n2, of n1. The base n1 can be any positive value other 0 or 1 and n2 can be any positive value.
This function takes as arguments any numeric data type or any nonnumeric data type that can be implicitly converted to a numeric data type. If any argument is BINARY_FLOAT, or BINARY_DOUBLE, then the function returns BINARY_DOUBLE. Otherwise the function returns NUMBER.
SQL> SELECT LOG(10, 100) FROM DUAL ;
--> 2
'DB > ORACLE' 카테고리의 다른 글
| [Oracle] MAX() (0) | 2020.04.09 |
|---|---|
| [Oracle] LTRIM() (0) | 2020.04.08 |
| [Oracle] LPAD() (0) | 2020.04.08 |
| [Oracle] LOWER() (0) | 2020.04.08 |
| Oracle LOCALTIMESTAMP() (0) | 2020.04.08 |
| Oracle LNNVL() (0) | 2020.04.08 |
| Oracle LN() (0) | 2020.04.08 |
| Oracle LISTAGG() (0) | 2020.04.08 |
Comments