delete 删除表中的一行: DELETE FROM 表1 where id=1; #删除表1中ID=1的一行
truncate 表名;#表中的所有行全部删除
drop 删除库: drop database if exists 库名;
drop 删除一个表:drop table if exists 表名;
drop 删除视图:drop view 视图名;
alter 删除列:alter table 表名 drop column 列名;