SQL是Structured Query Language(结构化查询语言)的缩写。SQL是专为数据库而建立的操作命令集,是一种功能齐全的数据库语言。在使用它时,只需要发出“做什么”的命令,“怎么做”是不用使用者考虑的。SQL功能强大、简单易学、使用方便,已经成为了数据库操作的基础,并且现在几乎所有的数据库均支持SQL。 本文将介绍如何查看表的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的办法