Confusing error about missing left parenthesis in SQL statement

前端 未结 4 841
心在旅途
心在旅途 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:49

    You need to specify a size for the VARCHAR2 data type.

    E.g. VARCHAR2(30)

    SQL*Plus is looking for the brackets around the VARCHAR2 size definition.

提交回复
热议问题