mySql 修改字段自增

mySql 修改字段自增  

2012-11-21 22:14:40|  分类: mySql |  标签:mysql  |举报|字号 订阅

下载LOFTER客户端

Alter table tb change id id int(10) not null auto_increment=1;//有问题

mysql> alter table newcar change id id int(11) not null auto-increment;//有问题

mysql> alter table newcar change id id int(11) not null AUTO_INCREMENT=1;//有问题

修改:alter table newcar change id id int(11) not null AUTO_INCREMENT;

 

删除

Alter table tb change id id int(10);//删除自增长

Alter table tb drop primary key;//删除主建

你可能感兴趣的:(mySql 修改字段自增)