Created
November 28, 2016 17:16
-
-
Save Curookie/234f6bc782ae67ae46dbbb0f67b84ac1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
number 타입에 15.63 입력==> 15.63 | |
number(15) 타입에 15.63 입력 ==> 16 <== 반올림 됨! | |
number(15,2)타입에 15.63 입력 ==> 15.63 | |
number(15,2)타입에 15.6371 입력 ==> 15.64 반올림 | |
number(15,2)타입에 12345678901234.64 ===> 오라클에러 ORA-01438 | |
따라서 실수(소수점 포함)를 입력하려면 | |
NUMBER타입이나 NUMBER(??,??) 로 정의해야 한다. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment