SQL--左外连接(LEFTJOIN)
LEFT JOIN 关键字从左表(table1)返回所有的⾏,即使右表(table2)中没有匹配。如果右表中没有匹配,则结果为 NULL。SQL LEFT JOIN 语法:
SELECT column_name(s)
FROM table1
LEFT JOIN table2
lumn_lumn_name;
或
SELECT column_name(s)
FROM table1
LEFT OUTER JOIN table2
lumn_lumn_name;
sql left join 多表连接⽰例:
SELECT student.StudentId,student.StudentName,student_class.ClassID
FROM student
LEFT JOIN student_class
ON student.StudentId = student_class.StudentID
ORDER BY student.StudentId DESC;
LEFT JOIN 关键字从左表(Websites)返回所有的⾏,即使右表(access_log)中没有匹配。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论