「MySQL入門」AUTO_INCREMENTのカラムの開始の値を変更する
設定内容を確認
show table status where name = 'demo_tbl’;
初期値を変更
alter table demo_tbl auto_increment=2001;
Coding Changes the World
設定内容を確認
show table status where name = 'demo_tbl’;
初期値を変更
alter table demo_tbl auto_increment=2001;