"SELECT TOP", "LEFT OUTER JOIN", "ORDER BY" gives extra rows
- by Codesleuth
I have the following Access query I'm running through OLE DB in .NET:
SELECT TOP 25
tblClient.ClientCode,
tblRegion.Region
FROM (tblClient LEFT OUTER JOIN
tblRegion ON tblClient.RegionCode = tblRegion.RegionCode)
ORDER BY tblRegion.Region
There are 431 records within tblClient that have RegionCode set to NULL.…