Assuming that you mean “select one column from table 2”:
SELECT table1.*, table2.first_name
FROM table1
LEFT JOIN table2
...
Assuming that you mean “select one column from table 2”:
SELECT table1.*, table2.first_name
FROM table1
LEFT JOIN table2
...