I am struggling to understand basic MySQL joins.
Basically I\'ve got 2 tables one with a customer first name and address id in it and another with the actual address.
Assuming that both tables have an address id, you could use
SELECT firstname, address, from table1 JOIN table2 ON table1.addressid = table2.addressid