参考:数据库中表id自增重置为1 方法一: truncate table tablename; //注意:有外键的表不能参与truncate操作 方法二: alter table tablename auto_increment=1;