mysql 给已经存在数据的表添加一个自增的id
alter table test_table add id int;
alter table test_table change id id int not null auto_increment primary key;