mysql添加主键并且自增长
alter table table_name add id(主键名称) int(11) unsigned not null auto_increment ,add primary key (id)
发布时间: 2012-06-29 15:48:46 作者: rapoo
mysql添加主键并且自增长
alter table table_name add id(主键名称) int(11) unsigned not null auto_increment ,add primary key (id)