正誤問題: LEFT JOIN は、左側のテーブルからすべての行を返し、一致する行を右側のテーブルに返します。
正解:A
This is true, indeed! The LEFT JOIN keyword returns all records from the left table (table1), and the matched records from the right table (table2). The result is NULL from the right side, if there is no match.