本文將介紹如何查看表的auto_increment及其修改方法
表的基本資料是存放在mysql的information_schema庫的tables表中,我們可以使用sql查出。
select auto_increment from information_schema.tables where table_schema='db name' and table_name='table name';
範例:檢視test_user 庫的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)
alter table tablename auto_increment=NUMBER;
範例:修改test_user 函式庫user 表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中文網。
相關推薦:
以上是如何透過MySql查看與修改auto_increment的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!