(2)非匹配(即缺失)型子选择查询的改写:SELECT table1. FROM table1 LEFT JOIN table2 ON table1.column1 = table2.column2 WHERE table2.column2 IS NULL;SELECT student. FROM student LEFT JOIN absence ON student.student_id = absence.student_id WHERE absence.student_id IS NULL;