Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Unmatched query

Status
Not open for further replies.

jkdaman

MIS
Mar 27, 2003
1
US
Hello!!!

I am having a little trouble with unmatched query. I am trying to accomplish a number in the final report which is in the list A but not in list b. As showen in the list below.

List A List b final
1 1
2 2
3 3
4 4

I am just wondering if some body could help me with the unmatched code. There is no help under Access 2000 helpdesk.
 
You could try this:

SELECT ListA from ListA
where ListA not in (select ListB from ListB)

I've kind of assumed that ListA and ListB are different tables, let me know if their columns though, and I'll see what I can do.

Hope this helps, Dodgy Chris
-----------------------------------

confucious say : better to save a mans life than to build 7 storey pagoda
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top