뇨내

ORA-01727 본문

Error/SQL

ORA-01727

삐옥 2021. 11. 14. 16:41
1
2
3
create table selfstudy(
num number(100)
);
cs

 

ORA-01727: numeric precision specifier is out of range (1 to 38)

= numeric precision의 범위는 1 ~ 38까지이다.

 

해결 :

num number(100) -> num number(1 ~ 38사이의 숫자 기입)

'Error > SQL' 카테고리의 다른 글

ORA-08002  (0) 2021.11.21
ORA-00001  (0) 2021.11.21
ORA-00942  (0) 2021.11.21
ORA-12899  (0) 2021.11.13
ORA-01438  (0) 2021.11.13
Comments