「MySQL入門」AUTO_INCREMENTの設定、値を確認するメモ

2017年12月16日

1.auto_incrementの設定を確認
mysql> show variables like '%auto_inc%’;

2. auto_increment値を確認
方法1
show table status like 'テーブル名’;
mysql> show table status like 'autoincrement_demo%’\G

方法2
mysql> select auto_increment from information_schema.tables where table_name = 'autoincrement_demo’;

3.auto_increment値を更新
mysql> alter table autoincrement_demo auto_increment=xxx;

MySQL

Posted by arkgame