修改列定义的问题,急!!在线等
原表是
create table if not exists book(
id tinyint unsigned not null
);
后修改列定义,将id设置为主键 自增 默认值是0
alter table book modify id tinyint unsigned primary key auto_increment default 0;
报出错误:
Invalid default value for 'id'
原表是
create table if not exists book(
id tinyint unsigned not null
);
后修改列定义,将id设置为主键 自增 默认值是0
alter table book modify id tinyint unsigned primary key auto_increment default 0;
报出错误:
Invalid default value for 'id'
2016-01-20
举报