SQL Join: Matching Records from Student and Exam Tables
A) SELECT * FROM student INNER JOIN exam ON student.exam_id = exam.exam_id; B) SELECT * FROM student LEFT JOIN exam ON student.exam_id = exam.exam_id; C) SELECT * FROM student RIGHT JOIN exam ON student.exam_id = exam.exam_id; D) SELECT * FROM student NATURAL JOIN exam;
原文地址: https://www.cveoy.top/t/topic/oCpB 著作权归作者所有。请勿转载和采集!