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.
Put the same 'addressid' in both the name and address tables then join the two as:
select name, address from customer join addresses on customer.addressid = addresses.addressid;