Confusing error about missing left parenthesis in SQL statement

前端 未结 4 840
心在旅途
心在旅途 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 need to specify the size of Varchar2.

    For example:- Name Varchar2(50)

    Note:- The maximum size of the Varchar2 is 4000.

提交回复
热议问题