MySQL——修改一个表的自增值
时间:2019-04-11 10:03:33
收藏:0
阅读:220
语句
alter table <table name> auto_increment=<value>;
示例
mysql> alter table tb_user auto_increment=100000; Query OK, 0 rows affected (0.01 sec) Records: 0 Duplicates: 0 Warnings: 2
原文:https://www.cnblogs.com/wangyang0210/p/10687630.html
评论(0)