delete from 表名 where条件;(不删除表结构,可以删部分记录) truncate table 表名;(不删除表结构,删除全部记录) drop table 表名;(删除表结构和表全部记录)