Supposing you've got a table with users or members, and another one with address details in. You want to pull up all the user details plus the address for a given user..
SELECT u.firstname, u.lastname, a.address1, a.address2, a.postcode
FROM users u, addresses a
WHERE u.id = 12345 AND u.addressid = a.id
This assumes that your users are identified by a numeric ID, as are addresses, and the user record has a field that references the ID of the address that's applicable to that user.
Hope this helps - feel free to drop me a line if not.
Cheers
Paul