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
- php
- DB
- 한글
- 스크립트
- checbox
- maven
- html
- 문자열
- 전자정부 표준프레임워크
- 오라클
- MYSQL
- 네이버스마트 에디터
- java
- exception
- 웹 플랫폼 설치 관리자
- jquery
- Oracle
- switch
- null
- SSL
- 톰캣
- JSTL
- RADIO
- 이클립스
- 호환성
- json
- spring form tag
- HTML5
- 날짜
- @RequestBody
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