修改mysql数据库表的auto_increment自增量

由于种种原因导致mysql表的自增id变得非常大,

比如数据id

1
2
103189

这样下一条记录就从103190开始了

就算我们删除了103189也是从103190

有什么办法让自增id从3开始

```
mysql> select auto_increment from information_schema.tables where table_schema='数据库名' and table_name='表名';
+----------------+
| auto_increment |
+----------------+
| 103190 |
+----------------+
1 row in set (0.04 sec)
```

```
mysql> alter table 表名 AUTO_INCREMENT=3;
```

    A+
发布日期:2022年11月08日  所属分类:未分类

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: