Hey guys
Basically I have the following query, it's untested due to no data at the moment, but it looks fine IMO. Anyway my question is, would it be possible to return R.Description (TblResource.Description) where there isn't a inner join, e.g. where there is no corresponding value in the TblRsrcType table, as in the oppsite of an inner join kinda.
Anyway here's my current query below, hopefully I've manage to explain my question.
Basically I have the following query, it's untested due to no data at the moment, but it looks fine IMO. Anyway my question is, would it be possible to return R.Description (TblResource.Description) where there isn't a inner join, e.g. where there is no corresponding value in the TblRsrcType table, as in the oppsite of an inner join kinda.
Anyway here's my current query below, hopefully I've manage to explain my question.
Code:
SELECT R.Description
FROM TblResource R
INNER JOIN TblRsrcEmp RSE
ON R.ResourceCode = RSE.ResourceCode
WHERE R.ResourceType = 'Laptop'
AND RSE.Returned = 'Yes'