MySql查看与修改auto_increment方法

来源:互联网 发布:mac 添加菜单栏图标 编辑:程序博客网 时间:2024/05/22 05:10
 

MySql查看与修改auto_increment方法

标签: mysqlschemaautoincrementselect
 15164人阅读 评论(0) 收藏 举报
 分类:

目录(?)[+]

本文将介绍如何查看表的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';
  • 1
  • 1



例子:查看 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)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7


修改表auto_increment

alter table tablename auto_increment=NUMBER;
  • 1
  • 1



例子:修改 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)
原创粉丝点击