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 |
Tags
- JS
- 자바
- function
- select
- 자료형
- sqldeveloper
- 변수
- error
- 서블릿
- HTML
- 삐옥
- Servlet
- SQL
- 이클립스
- 오라클오류
- 연산자
- From
- Operator
- 오류
- Java
- Eclipse
- variable
- oracle
- VisualStudioCode
- CSS
- datatype
- 오라클
- 개발자
- 코딩
- 에러
Archives
- Today
- Total
목록TRUNC (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