Is it possible to select only some columns from a table on a LEFT JOIN?
If you want some of table1's columns and some of table2's columns, you would do something like
SELECT t1.col1, t1.col2, t1.col3, t2.col1, t2.col2, t2.col3 FROM table1 t1 LEFT JOIN table2 t2 ON...