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