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
- From
- sqldeveloper
- 에러
- error
- 개발자
- datatype
- variable
- JS
- CSS
- 삐옥
- oracle
- 오라클
- select
- 변수
- VisualStudioCode
- 서블릿
- function
- 코딩
- 오류
- Servlet
- SQL
- 자바
- HTML
- 오라클오류
- 이클립스
- Java
- 자료형
- Eclipse
- 연산자
- Operator
Archives
- Today
- Total
목록Mod (1)
뇨내
[Oracle - SQL Developer] Numerical Function : 숫자 함수
Numerical Function 숫자 함수 숫자 함수(= 수학 함수) - 자바의 Math 클래스와 비슷함 1. round() 2. floor() 3. trunc() 4. ceil() 5. mod() ROUND() - 반올림 함수 - number round(컬럼명) : 정수 반환 - number round(컬럼명, 소수이하지릿수) : 실수 반환 1 2 3 4 5 6 7 8 9 10 11 12 select round(height / weight), height / weight from tblHealthCare; select height / weight, round(height / weight), round(height / weight, 1), round(height / weight, 2), round(he..
Oracle/Function
2021. 11. 14. 00:01