mysql hanya bergabung dengan satu kolom

SELECT table1.*, table2.first_name FROM table1
LEFT JOIN table2 ON table1.id = table2.fkid;
Powerful Penguin