mysql删除一个表后,下次再插入的时候,自增列会在原来基础上继续增加

delete from table1;

通过:

truncate table table1;使新的表的自增列从1开始计数

 

你可能感兴趣的:(mysql,mysql基础)