清空mysql表中的记录有以下两种方法:delete from 表名; truncate table 表名;不带where参数的delete语句可以删除mysql表中所有内容;使用truncate table也可以清空m...