Blogger Information
Blog 91
fans 0
comment 0
visits 203539
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
mysql如何让自增id从1开始设置方法
何澤小生的博客
Original
1562 people have browsed it

有2种方式

第一种
如果表中数据没有用。如果直接删除数据,自动增长ID还是不会从1开始的,可以利用“清空数据表”。这样自动增长ID也将会从1开始。
清空表的sql如下
truncate table 表名

第二种
(注意:这个是你通过delete from table 之后 设置的。不然不起作用)
如果表中的数据还有用,那么需要从特定的某一个值开始自动增长的话,做法如下
比如你想让id从2开始自动增长,sql如下
alter table jx_pcmx AUTO_INCREMENT 2;
alter table jx_pcmx AUTO_INCREMENT 此处写你想让id从几开始增长的数字;

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post