0

我正在使用此代码在数据库中创建一个表。似乎正确,但我收到语法错误。我直接使用来自http://dev.mysql.com/doc/refman/5.6/en/create-table.html的语法,但没有雪茄。想法?

create table car (
VIN integer primary key autoincrement, 
make text not null, 
model text not null, 
year text not null);
4

3 回答 3

1

错字:auto_increment不是autoincrement

于 2013-03-07T04:19:06.857 回答
0

您在自动增量语法中是错误的。

用这个:

create table car (
VIN integer  primary key auto_increment, 
make text not null, 
model text not null, 
year text not null);

更多:AUTO_INCREMENT

于 2013-03-07T04:19:35.720 回答
0
create table car (
   VIN integer AUTO_INCREMENT PRIMARY KEY, 
   make text not null, 
   model text not null, 
   year text not null
);

应该管用

于 2013-03-07T04:20:47.537 回答