为什么MySQL中存在Statment Error

时间:2016-06-10 06:34:49

标签: mysql create-table

我在MySQL中有以下Statment并且每次都出现此错误(截图):

CREATE TABLE orderstatus
(
    OStatusID int NOT null PRIMARY KEY AUTO_INCREMENT,
    OStatus varchar(30) null
(

我不知道为什么我会成为这个错误

你能帮助我吗? enter image description here

3 个答案:

答案 0 :(得分:1)

关闭括号错误,应该是')'

答案 1 :(得分:0)

试试这个

CREATE TABLE orderstatus 
( 
   OStatusID int NOT null PRIMARY KEY AUTO_INCREMENT, 
   OStatus varchar(30) null 
)

答案 2 :(得分:0)

下面是正确的代码测试成功..

CREATE TABLE orderstatus 
( 
OStatusID int NOT null PRIMARY KEY AUTO_INCREMENT, 
OStatus varchar(30) null 
)[enter image description here][1]