Confusing error about missing left parenthesis in SQL statement

前端 未结 4 802
心在旅途
心在旅途 2021-01-03 23:57

SQLPLUS says I have missing left parenthesis with this statement in my sql script..

CREATE TABLE people(
    id INT NOT NULL PRIMARY KEY,
    name VARCHAR2
)         


        
4条回答
  •  隐瞒了意图╮
    2021-01-04 00:36

    You are getting this error because you didn't specify the character with datatype varchar2. Try something like this:

    CREATE TABLE people(
    id INT NOT NULL PRIMARY KEY,
    name VARCHAR2(20) );
    

提交回复
热议问题