Mysql——》auto_increment 我不是女神ヾ 2024-02-19 19:49 4阅读 0赞 版权声明:本文为博主原创文章,无需授权即可转载,甚至无需保留以上版权声明,转载时请务必注明作者。 [https://blog.csdn.net/weixin\_43453386/article/details/89156893][https_blog.csdn.net_weixin_43453386_article_details_89156893] #### Mysql——》auto\_increment #### * 一、查看auto\_increment * 二、修改auto\_increment ## 一、查看auto\_increment ## > * table\_schema:库名 > * table\_name:表名 SELECT auto_increment FROM information_schema. TABLES WHERE table_schema = 'test' AND table_name = 'record'; ![在这里插入图片描述][watermark_type_ZmFuZ3poZW5naGVpdGk_shadow_10_text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3dlaXhpbl80MzQ1MzM4Ng_size_16_color_FFFFFF_t_70] ## 二、修改auto\_increment ## > * table\_name:表名 > * number:自增数值 alter table table_name auto_increment=number; alter table record auto_increment=128; [https_blog.csdn.net_weixin_43453386_article_details_89156893]: https://blog.csdn.net/weixin_43453386/article/details/89156893 [watermark_type_ZmFuZ3poZW5naGVpdGk_shadow_10_text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3dlaXhpbl80MzQ1MzM4Ng_size_16_color_FFFFFF_t_70]: https://image.dandelioncloud.cn/pgy_files/images/2024/01/29/444c5c2ff7e642d79dfd6d13d10d6fe0.png
还没有评论,来说两句吧...