mysql autoincrement

autoincrement の現在値を得る

show table STATUS where name = “テーブル名”;

autincrementの値を最大値にする

alter table テーブル名 AUTO_INCREMENT 1;

※ 1 を指定すると、エラーしない値に自動的に調整してくれる模様