创建表返回错误1064语法错误

时间:2013-03-07 04:15:58

标签: mysql sql

我正在使用此代码在db中创建一个表。似乎是正确的,但我收到了语法错误。我直接使用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);

3 个答案:

答案 0 :(得分:1)

错字:它是auto_increment而不是autoincrement

答案 1 :(得分:0)

自动增量语法错误。

使用此:

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

更多:AUTO_INCREMENT

答案 2 :(得分:0)

create table car (
   VIN integer AUTO_INCREMENT PRIMARY KEY, 
   make text not null, 
   model text not null, 
   year text not null
);

应该工作