Without actually giving all the details of my query: Is there a way of joing the results of two separate queries on different tables? for example if i had a table
re
Begin with something like
SELECT tablea.id,tablea.name,tablea.address,tableb.occupation
and put something like this in the WHERE clause:
WHERE
WHERE tablea.id = tableb.id
I don't think that you need a left join here.