This doesn't specifically address your problem but I STRONGLY suggest not using reserved words as column names. Too easy for the system to get confused.
Stay away from column names like User, Name, Table, Field, ID and the like.
SELECT Sales.SalesColumns
, Staff.StaffColumns
, Bonus.BonusColumns
FROM Sales LEFT OUTER JOIN Staff ON Sales.ID = StaffID
LEFT OUTER JOIN Bonus ON Staff.ID = Bonus.ID
The order you present the tables is:
TableWithAllRows LEFT OUTER JOIN TableWithSomeRows.
The...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.