首頁 >資料庫 >mysql教程 >如何透過MySql查看與修改auto_increment的方法

如何透過MySql查看與修改auto_increment的方法

jacklove
jacklove原創
2018-06-09 10:00:172029瀏覽

本文將介紹如何查看表的auto_increment及其修改方法

查看表當前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 庫的userauto_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;

範例:修改test_user 函式庫userauto_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中文網。

相關推薦:

如何透過php產生網頁桌面的捷徑

#利用js遍歷取得表格內資料的方法

如何實作php 陣列元素快速去重效果

以上是如何透過MySql查看與修改auto_increment的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn