删除数据:delete from 表名 where id='1';,如果数据多,会慢清空表:truncate table 表名:速度快,清空后无法恢复删除表:drop table if exists 表名;
delete from 表名 where id='1';
truncate table 表名
drop table if exists 表名;