查看和修改表的auto_increment
Posted bibiafa
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了查看和修改表的auto_increment相关的知识,希望对你有一定的参考价值。
表的基本信息都保存在information_schema数据库的tables表中
select auto_increment from information_schema.tables where table_schema=‘db name‘ and table_name=‘table name‘;
alter table table_name auto_increment=new value
以上是关于查看和修改表的auto_increment的主要内容,如果未能解决你的问题,请参考以下文章
导出时如何自动将 auto_increment 键重置为 1?