hey guys,
I have a query called 'non duplicate data' and another query called 'Select common ones'..
'Select common ones' has rows with ID numbers that are also present in 'non duplicate data' qry. what i want to is only show those rows from 'non duplicate data' qry that are not there in query called 'Select common ones'..and i am having a tough time doing that..Following is the query that results in 0 rows
Thanks for any help in advance.
I have a query called 'non duplicate data' and another query called 'Select common ones'..
'Select common ones' has rows with ID numbers that are also present in 'non duplicate data' qry. what i want to is only show those rows from 'non duplicate data' qry that are not there in query called 'Select common ones'..and i am having a tough time doing that..Following is the query that results in 0 rows
Code:
SELECT t3.*
FROM [STEP 4:NonDuplicateData] AS t3
WHERE not exists (SELECT t2.ID FROM [Step 5: SelectCommonOnes] as t2 WHERE t2.ID = t3.ID);
Thanks for any help in advance.