Is it possible to select only some columns from a table on a LEFT JOIN?
Add a * to just that table in your select statement, separate from other columns with a comma:
*
SELECT table1.*, table2.col2, table2.col3 FROM table1 LEFT JOIN table2 ON...
Source: https://stackoverflow.com/a/3492919/3417198