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
- error
- 연산자
- datatype
- 오라클
- 이클립스
- From
- sqldeveloper
- Operator
- variable
- VisualStudioCode
- CSS
- SQL
- 에러
- oracle
- HTML
- Servlet
- Java
- 오류
- 삐옥
- Eclipse
- function
- 오라클오류
- 코딩
- 변수
- 개발자
- JS
- 서블릿
- 자바
- 자료형
- select
Archives
- Today
- Total
뇨내
ORA-01727 본문
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사이의 숫자 기입)
Comments