Y
ym2004
Hi,
I am trying to write a query to select the rows if the values from a table
[A].[col1] is not found in another table .[col1] AND .[col2].
SELECT DISTINCT [oldINFO].[Reporter_Type] FROM [oldINFO]
WHERE [oldINFO].[Reporter_Type] NOt IN
( SELECT [English Description] FROM [tblk_Reporter Type] )
the above works for me but its not sufficient, I need to select for this
condition (below) but it failed cos Access does not allow the UNION for this
operation.
SELECT DISTINCT [oldINFO].[Reporter_Type] FROM [oldINFO]
WHERE [oldINFO].[Reporter_Type] NOt IN
( SELECT [English Description] FROM [tblk_Reporter Type]
UNION
SELECT [French Description] FROM [tblk_Reporter Type]
)
Any suggestions...thank you.
I am trying to write a query to select the rows if the values from a table
[A].[col1] is not found in another table .[col1] AND .[col2].
SELECT DISTINCT [oldINFO].[Reporter_Type] FROM [oldINFO]
WHERE [oldINFO].[Reporter_Type] NOt IN
( SELECT [English Description] FROM [tblk_Reporter Type] )
the above works for me but its not sufficient, I need to select for this
condition (below) but it failed cos Access does not allow the UNION for this
operation.
SELECT DISTINCT [oldINFO].[Reporter_Type] FROM [oldINFO]
WHERE [oldINFO].[Reporter_Type] NOt IN
( SELECT [English Description] FROM [tblk_Reporter Type]
UNION
SELECT [French Description] FROM [tblk_Reporter Type]
)
Any suggestions...thank you.