mysql添加主键并且自增长
alter table table_name add id(主键名称) int(11) unsigned not null auto_increment ,add primary key (id)