MySQL查询和修改auto_increment的方法

查询表名为tableName的auto_increment值:
复制代码 代码如下:
SELECT AUTO_INCREMENT FROM information_schema.tables WHERE table_schema='photos' and table_name="tableName";
table_schema='photos' ----  为所在数据库名称,没有这个会把root中所有表格中表格名都为tableName的auto_increment  都调出来;

information_schema.tables  为固定的格式,sql进入命令终端----进入数据库中操作的内容;


修改 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: 0
mysql> 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)

修改 photos 库 tf_user 表 auto_increment为 20

mysql> alter table `photos`.`tf_user` auto_increment=20;
Query OK, 0 rows affected (0.00 sec)
Records: 0 Duplicates: 0 Warnings: 0

mysql> select auto_increment from information_schema.tables where table_schema='photos' and table_name='tf_user';
+----------------+
| auto_increment |
+----------------+
| 20 |
+----------------+
1 row in set (0.00 sec)



也可以在表格的  操作 中  查看  修改   下一个插入数据的   AUTO_INCREMENT;---这样比较方便
http://blog.csdn.net/fdipzone/article/details/50421831
posted @   盘思动  阅读(5331)  评论(1编辑  收藏  举报
编辑推荐:
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
阅读排行:
· 无需6万激活码!GitHub神秘组织3小时极速复刻Manus,手把手教你使用OpenManus搭建本
· C#/.NET/.NET Core优秀项目和框架2025年2月简报
· Manus爆火,是硬核还是营销?
· 终于写完轮子一部分:tcp代理 了,记录一下
· 【杭电多校比赛记录】2025“钉耙编程”中国大学生算法设计春季联赛(1)
点击右上角即可分享
微信分享提示