两种方法修改或者重置mysql中的自增字段的值:autoIncrement;
其中方法二可以修改成任意值。
方法一:
truncate table tablename
方法二:
直接修改自增序列的值:
alter table `tablename` auto_increment=1;
两种方法修改或者重置mysql中的自增字段的值:autoIncrement;
其中方法二可以修改成任意值。
方法一:
truncate table tablename
方法二:
直接修改自增序列的值:
alter table `tablename` auto_increment=1;
本文标题:修改mysql中自增序列的值,恢复初始值
本文链接:https://www.haomeiwen.com/subject/rkzoeftx.html
网友评论