Using outer join (1 Viewer)

wgma

Registered User.
Local time
Today, 03:15
Joined
Nov 19, 2007
Messages
72
I am using Access 2007.

I have 2 queries, q1 and q2, that return similar data just different date ranges. I need to be able to get all of the records in q2 that are not in q1.

I tried to use an outer join but that didn't work. How can I do this?

I have tried

Select q2.* From q2 Where q2.a NOT IN (Select q1.a From q1)

This seems to take forever.

Thanks!
 

SOS

Registered Lunatic
Local time
Today, 01:15
Joined
Aug 27, 2008
Messages
3,517
I am using Access 2007.

I have 2 queries, q1 and q2, that return similar data just different date ranges. I need to be able to get all of the records in q2 that are not in q1.

I tried to use an outer join but that didn't work. How can I do this?

I have tried

Select q2.* From q2 Where q2.a NOT IN (Select q1.a From q1)

This seems to take forever.

Thanks!
Just use the Unmatched query wizard.
 

Users who are viewing this thread

Top Bottom