alter table tb_name AUTO_INCREMENT=3;
alter table tb_name modify id integer default '1';
alter table tb_name modify id int auto_increment primary key;
alter table tb_name AUTO_INCREMENT=3;
alter table tb_name modify id integer default '1';
alter table tb_name modify id int auto_increment primary key;