Does you tables have any columns that are common?
Say you have three tables:
names with columns: id, name
emails with columns: id, names_id, email
urls with columns: id, names_id, url
where the 'emails' and 'urls' tables are linked to 'names' table id column with their names_id columns.
If you want to select name, email and url for name='rune', then you can make this query:
SELECT name, email, url FROM names
LEFT JOIN emails ON emails.names_id = names.id
LEFT JOIN urls ON urls.names_id = names.id
WHERE names.name = 'rune';
or
SELECT name, email, url FROM names, emails, urls
WHERE names.id = emails.names_id
AND names.id = urls.names_id
AND names.name = 'rune';