I am having trouble pulling data from a table in a query and returnig all results if i have a blank field in 'Brand'.
I have two queries, this is the first, it pulls essentially the same data but only returns the ID numbers of Brand and Leader not the resolved names from the related tables.
SELECT Review.ID, Review.Claim, [TSO Leader].LeaderID, Review.Consultant, Review.TSO, Review.[Claim Review Date], Review.Brand, Review.[Discussion Point], Review.[Review Notes], Review.[Review Decision], Review.Categories, Review.[Product Type]
FROM [TSO Leader] INNER JOIN Review ON [TSO Leader].LeaderID = Review.[TSO Leader]
ORDER BY [TSO Leader].LeaderID;
This query pulls resolved 'TSO Leader' and 'Brand' but if the brand is empty then it wont return the result. How can I edit it to show Brand fields even if they are null.
This is the second query that doesn't pull null fields from Brand.
SELECT Review.ID, Review.Claim, Review.Consultant, Review.TSO, Review.[Claim Review Date], Review.[Discussion Point], Review.[Review Notes], Review.[Review Decision], Brand.Brand, Categories.Reason, [TSO Leader].LeaderName
FROM [TSO Leader] INNER JOIN (Categories INNER JOIN (Brand INNER JOIN Review ON Brand.BrandID=Review.Brand) ON Categories.CategoriesID=Review.Categories) ON [TSO Leader].LeaderID=Review.[TSO Leader];
EDIT: From Mitch's comment below attempted to expand result set via outer join but I receive a syntax error. This is the updated from.
FROM [TSO Leader] INNER JOIN (Categories INNER JOIN (Brand FULL OUTER JOIN Review ON Brand.BrandID=Review.Brand) ON Categories.CategoriesID=Review.Categories) ON [TSO Leader].LeaderID=Review.[TSO Leader];