语法:
表名称 表名称
delete t1,t2,...,tn from t1,t2,...,tn [where condition];
示例:有现存的两个表,学生表和分数表
一、将高二三班的学生以及分数全部删掉
sql:delete s1,s2 from student as s1,score as s2 where s1.id = s2.sid and s1.class='高二三班';
注:在这里我使用了别名,也可以不使用,但是如果from后边使用别名的话,from前边也要使用相应的别名,否则会提示语法错误
执行
操作成功
第一个where 条件 s1.id = s2.sid 两表关联。
第二个where条件 s1.class= '高二三班' 删除条件。
剩余记录
二、将分数大于550的学生以及分数删除
sql:delete score,student from score,student where score.sid = student.id and score.fraction > 550;
执行
成功
第一个where 条件 score.sid = student.id 两表关联。
第二个where条件 score.fraction > 550 删除条件。
剩余记录
我所理解的多表删除和普通(单表)删除的差别:多表删除在delete和from中间也有表名,并且where条件中有各个表的关联关系。