M
MikeR
I'm trying to return columns from a table where there is no match in another table on the
same column value, and the value in the first table does not have a space in it (multiple
words).
SELECT [Managers].[MANAGER]
FROM Managers LEFT JOIN Addr ON [Managers].[MANAGER] =( [Addr].[Mgr])
WHERE ([Managers].[Manager] not in (" ") and [Addr].[Mgr] Is Null)
ORDER BY [Managers].[Manager];
The phrase "[Managers].[Manager] not in (" ")" just seems to be ignored ignored, altho it
returns the correct data if just used as a select, ie
SELECT Manager from MANAGERS where Manager not in (" ");
TIA,
MikeR
same column value, and the value in the first table does not have a space in it (multiple
words).
SELECT [Managers].[MANAGER]
FROM Managers LEFT JOIN Addr ON [Managers].[MANAGER] =( [Addr].[Mgr])
WHERE ([Managers].[Manager] not in (" ") and [Addr].[Mgr] Is Null)
ORDER BY [Managers].[Manager];
The phrase "[Managers].[Manager] not in (" ")" just seems to be ignored ignored, altho it
returns the correct data if just used as a select, ie
SELECT Manager from MANAGERS where Manager not in (" ");
TIA,
MikeR