この記事ではテーブルのauto_incrementの確認方法と変更方法を紹介します
テーブルの基本データはmysqlのinformation_schemaライブラリのtablesテーブルに格納されています。 SQL を使用して調べることができます。
select auto_increment from information_schema.tables where table_schema='db name' and table_name='table name';
例: userテーブルを表示するauto_increment
mysql> select auto_increment from information_schema.tables where table_schema='test_user' and table_name='user'; +----------------+| auto_increment | +----------------+| 1002 | +----------------+1 row in set (0.04 sec)テーブルauto_incrementを変更する
alter table tablename auto_increment=NUMBER;
テーブルauto_incrementは10000 mysql> alter table test_user.user auto_increment=10000;
Query OK, 0 rows affected (0.12 sec)
Records: 0 Duplicates: 0 Warnings: 0mysql> select auto_increment from information_schema.tables where table_schema='test_user' and table_name='user';
+----------------+| auto_increment |
+----------------+| 10000 |
+----------------+1 row in set (0.04 sec)
この記事では、表示と変更の方法について説明しますMySql による auto_increment の詳細については、php 中国語 Web サイトを参照してください。 関連する推奨事項:
以上がMySql を通じて auto_increment メソッドを表示および変更する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。