1、删除表中所有数据,但保留表结构(可用以下两个语句): truncate table 表名;delete from 表名。 2、删除表中部分数据 delete from 表名 where 条件。 3、删除表结构及数据 drop table 表名;