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

jacklove
發布: 2018-06-09 10:00:17
原創
2015 人瀏覽過

本文將介紹如何查看表的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中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板