Code:
SELECT t2.quote, t2.author, t1.profession
FROM table2 t2
LEFT JOIN table1 t1 ON t2.author = t1.author
OR, if author's table1's id = author's table2's id you could do:
Code:
select t2.quote, t2.author, t1.profession
from table1 t1, table2 t2
where t1.id = t2.id