Thanks in advance for the help.
I have a table labelled attributes. In that table is product item numbers (pin), and attribute numbers. Each attribute for a pin is in a separate row
Ex.
pin attribute
111 4
111 5
111 10
112 4
112 5
...
I am trying to find a query that will allow me to say "Select pin if attribute = 4 and attribute = 5"
The attributes would be color, size, etc.. so get all records that are red (4) and size Small (5).
In the example above, it would return pins 111 and 112.
Mike