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
- jquery
- html
- null
- DB
- Oracle
- SSL
- RADIO
- 전자정부 표준프레임워크
- HTML5
- switch
- spring form tag
- 웹 플랫폼 설치 관리자
- exception
- maven
- java
- php
- MYSQL
- 호환성
- 오라클
- 이클립스
- 날짜
- 문자열
- 네이버스마트 에디터
- @RequestBody
- checbox
- 한글
- 스크립트
- JSTL
- json
- 톰캣
Archives
- Today
- Total
개인적인 정리
[Oracle] POWER() 본문
오라클 POWER()
POWER()
- 제곱에 대한 표현
POWER(n2, n1)
의 형태
POWER returns n2 raised to the n1 power. The n2 and the exponent n1 can be any numbers, but if n2 is negative, then n1 must be an integer.
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 POWER(3, 4) FROM DUAL ;
--> 81
'DB > ORACLE' 카테고리의 다른 글
[ORACLE] REGEXP_COUNT() (0) | 2020.04.21 |
---|---|
[Oracle] RAWTOHEX() (0) | 2020.04.14 |
[Oracle]RATIO_TO_REPORT() (0) | 2020.04.14 |
[Oracle] RANK() (0) | 2020.04.14 |
[Oracle] PERCENT_RANK() (0) | 2020.04.14 |
[Oracle]NVL2() (0) | 2020.04.13 |
[Oracle] NVL() (0) | 2020.04.13 |
[Oracle] NUMTOYMINTERVAL() (0) | 2020.04.13 |
Comments