I am stuck trying to build a query for my database by combining the information in two different tables:
The first one is called item_distribution and has two columns: one for a folder_ID and another for an item_ID.
And the second one is called item_tags and has two columns as well: one for a tag_ID and another for an item ID.
Let's imagine a situation:
In the first table I have the following information (which items are in which folders):
folder_ID item_ID
00001 00001
00001 00002
00001 00003
00002 00004
00001 00005
00001 00006
And in the second table, the following rows (which items have which tags):
tag_ID item_ID
00001 00001
00002 00001
00003 00001
00001 00002
00003 00002
00001 00003
00002 00003
00001 00004
00001 00005
00002 00005
How could I get the distinct item_ID of all the items which are in folder 00001 and have both the tags 00001 AND 00002? Is it possible with only one query expression?
Thanks a lot!
Oriol