删除表中所有记录使用 delete from 表名; 还是使用 truncate table 表名;
delete:一条一条删除,不清空 auto_increment 记录数;
truncate:直接将表删除,重新建表,auto_increment 记录数将置为0,重新开始计数。