L
Lars Brownies
I'm testing with filter queries.
I have a table with fields ID_person and Category. Both fields belong to the
primary key. Pulling out the unique ID numbers which have Category A is
simple:
SELECT ID_person
FROM tblCategory
WHERE (((Category)="A"));
But I would like to pull out every unique ID numbers that has for instance
both "A" and "C" as its category. How can I do that?
Thanks,
Lars
I have a table with fields ID_person and Category. Both fields belong to the
primary key. Pulling out the unique ID numbers which have Category A is
simple:
SELECT ID_person
FROM tblCategory
WHERE (((Category)="A"));
But I would like to pull out every unique ID numbers that has for instance
both "A" and "C" as its category. How can I do that?
Thanks,
Lars