[摘要]本文将介绍如何查看表的auto_increment及其修改方法查看表当前auto_increment表的基本数据是存放在mysql的information_schema库的tables表中,我们可以... 本文将介绍如何查看表的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 库的 user 表 auto_increment mysql> select auto_increment from information_schema.tables where table_schema='test_user' and table_name='user';
+----------------+ |
关键词: 如何通过MySql查看与更改auto_increment的办法