左結合テーブルのすべてのフィールドを選択する方法 SELECT文を使用する方法:SELECT t1.*, t2.* FROM table1 t1 LEFT JOIN table2 t2 ON t1.id = t2.id;>>More