728x90
λ°μν
[ORACLE] SQL Developer
μ€λ₯λ²νΈ
ORA-00984: column not allowed here
μ΄μ μ¬μ©ν μ μμ΅λλ€.
>> μ€λ₯ λ²νΈ : ORA-00984
>> μν©
→ spotmate table μμ± ν, insert κ°μ λ£λλ° νμ΄ μμ±λμ§ μλ μν©
>> λ¬Έμ : μ€λΌν΄ ORA-00984: column not allowed here | μ΄μ μ¬μ©ν μ μμ΅λλ€.
>> λ¬Έμ μμΈ
→ λ°μ΄ν°κ° μμ± μ€λ₯ : λ°μ΄ν° νμ μ λ§μ§ μλ νμμΌλ‘ λ°μ΄ν° κ°μ κΈ°μ νμ¬ μ€λ₯ λ°μ
>> λ¬Έμ ν΄κ²° λ°©λ²
→ create tableμ λ°μ΄ν°νμ κ³Ό insert μμ±νλ λ°μ΄ν° νμ μ λΉκ΅νμ¬ νλ¦° λΆλΆμ μμ νλ©΄ λ©λλ€.
λ¬Έμ
μ€λ₯ λ²νΈ : ORA-00984
λ¬Έμ ν΄κ²°
→ create tableμ λ°μ΄ν°νμ κ³Ό insert μμ±νλ λ°μ΄ν° νμ μ λΉκ΅νμ¬ νλ¦° λΆλΆμ μμ νλ©΄ λ©λλ€.
-- ν
μ΄λΈ μμ± : spotmate
CREATE TABLE spotmate (
no NUMBER NOT NULL, /* λ©μ΄νΈλ²νΈ */
carNo NUMBER, /* μ°¨λλ²νΈ */
startDate DATE, /* μΆλ°λ μ§ */
endDate DATE, /* λμ°©λ μ§ */
people NUMBER, /* μΈμμ */
type VARCHAR2(100), /* μ ν */
point NUMBER, /* ν¬μΈνΈ */
duration VARCHAR2(1000), /* μ΄ μμμκ° */
distance VARCHAR2(1000), /* μ΄ κ±°λ¦¬ */
comments VARCHAR2(1000) /* μ½λ©νΈ */
);
-- μνμ€ μμ±
create sequence seq_spotmate_no
increment by 1
start with 1
nocache;
-- insert
INSERT INTO spotmate VALUES (
seq_spotmate_no.nextval,
1,
SYSDATE,
SYSDATE,
1,
'μΉ΄ν',
3000,
'28λΆ',
'12.2km',
'μΉ΄ν ν©λλ€'
);
π΅ λ¬Έμ ν΄κ²° ν, ν μ±κ³΅μ μΌλ‘ μ½μ μ΄ μλ£!
728x90
λ°μν