I am trying to get data from a table that is identified by ID's from other tables; they all feed into each other. For example:
Get tblA.ID
Using tblA.ID, get tblB.ID
Using tblB.ID, get tblC.ID
Using tblC.ID, get tblD.Username
So I would begin with:
SELECT [ID]
FROM tblA
WHERE [Name] = 'Joe Bloggs'
But how would I continue the trail?
JOIN. - technet.microsoft.com/en-us/library/ms191517(v=sql.105).aspx