我正在使用此代码在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);
答案 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);
答案 2 :(得分:0)
create table car (
VIN integer AUTO_INCREMENT PRIMARY KEY,
make text not null,
model text not null,
year text not null
);
应该工作