方法1(好處是運行速度超快):rem
truncate table test(你的表名);table
方法2(好處是能夠從任何值開始,缺點是若是數據量大的話delete from test;很是耗時):test
delete from test(你的表名); alter table `test(你的表名)` auto_increment=1;方法