没有最好的语言,只有最适合的语言。
分类: Mysql/postgreSQL
2013-07-11 18:59:53
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;//删除主建