I'm currently trying to write a query which involves 5 main tables, 2 of which are referring to a 3rd with foreign keys, but not relating to each-other... and one of the first 2 tables is the main subject of the query. Here's a basic synopsis.
instance user
-------- ----
id id
name name
user_id
def def_map
--- ------
id id
name instance_id
user_id def_id
def_data
--------
id
name
def_id
user_id
What I want to do is get a list of all of the 'def_map's for a single user. In each row I'd like the associated def_data to be displayed as well. So the rows would be like:
instance.id, def.id, def.name, def_data.name, user.id
I can figure out how to get all info except def_data.name in the result, or all info except for instance.id ... but can't figure out how to get then all together using one query. Is it possible? I think part of the problem is I don't know if there is a special word that describes this type of query so I would know what to read up on.
I'm using DQL, but examples in SQL would be just as useful. Thanks in advance for any help.

defanddef_datawhich seem to be the same thing? – NullUserException♦ Aug 15 '11 at 14:07SELECT instance.id AS instance_id, def_map.def_id AS def_id, user.id AS user_Id FROM def_map JOIN def_map.def_id AS def, JOIN def_map.instance_id AS instance, JOIN instance.user_id AS user WHERE def_map.instance_id == '$instance_id'... This query (i'm sure there are errors, but just for a general idea of what I'm getting at) has a chain of references to every table involved, except for the def_data table, which I can't get at. – Nick Jennings Aug 15 '11 at 14:21