为什么 MySQL 中有语句错误
Why is there an Statment Error in MySQL
我在 MySQL 中有以下语句,每次出现此错误时(屏幕截图):
CREATE TABLE orderstatus
(
OStatusID int NOT null PRIMARY KEY AUTO_INCREMENT,
OStatus varchar(30) null
(
不知道为什么会出现这个错误
你能帮帮我吗?
enter image description here
右括号错了,应该是')'
试试这个
CREATE TABLE orderstatus
(
OStatusID int NOT null PRIMARY KEY AUTO_INCREMENT,
OStatus varchar(30) null
)
下面是正确的代码测试成功..
CREATE TABLE orderstatus
(
OStatusID int NOT null PRIMARY KEY AUTO_INCREMENT,
OStatus varchar(30) null
)[enter image description here][1]
我在 MySQL 中有以下语句,每次出现此错误时(屏幕截图):
CREATE TABLE orderstatus
(
OStatusID int NOT null PRIMARY KEY AUTO_INCREMENT,
OStatus varchar(30) null
(
不知道为什么会出现这个错误
你能帮帮我吗? enter image description here
右括号错了,应该是')'
试试这个
CREATE TABLE orderstatus
(
OStatusID int NOT null PRIMARY KEY AUTO_INCREMENT,
OStatus varchar(30) null
)
下面是正确的代码测试成功..
CREATE TABLE orderstatus
(
OStatusID int NOT null PRIMARY KEY AUTO_INCREMENT,
OStatus varchar(30) null
)[enter image description here][1]