Delete from 表名 where 条件
Delete from 表名;
删除学号为1学生数据
Delete from 表名 where id = 1;
删除名字为ww学生的数据
Delete from 表名 where name=”ww”;
Truncate table 表名;