alright so here's a simpler problem that hopefully someone can answer:
I have a titles to authors many to many relationship and a qry that selects as such:
select ID, Title, MM.AuthorFK, Author ORDER BY title
so brings up a blocks of a title in the query with a line for each author in the block
If you wanted to return every title that had two distinct MM.AuthorFK's, how would you write that in the WHERE clause? The following won't return anything cause each author is on a different line:
SELECT DISTINCT ID, Title from QRY WHERE MM.AuthorFK = 1 AND MM.AuthorFK = 2 ORDER BY Title
???
I have a titles to authors many to many relationship and a qry that selects as such:
select ID, Title, MM.AuthorFK, Author ORDER BY title
so brings up a blocks of a title in the query with a line for each author in the block
If you wanted to return every title that had two distinct MM.AuthorFK's, how would you write that in the WHERE clause? The following won't return anything cause each author is on a different line:
SELECT DISTINCT ID, Title from QRY WHERE MM.AuthorFK = 1 AND MM.AuthorFK = 2 ORDER BY Title
???