ORA-00933: SQL command not properly ended in insert command

前端 未结 3 1817
悲&欢浪女
悲&欢浪女 2021-01-20 07:23

The are many questions with this same title but I can\'t find an answer among those.

What am I doing wrong?

CREATE TABLE J
    (A integer)
;

INSERT          


        
3条回答
  •  盖世英雄少女心
    2021-01-20 07:50

    You are adding multiple values into a 1 column table.

    You need Insert into J (A) values (1);

    Insert into J (A) values (2);

    etc

提交回复
热议问题