I have one table - Users - and I have another table - Colors. Every user can create more records in Colors and each of these are "owned" by the user in question (this means that Colors holds a field named "Userid", which is the same as the field named "Id" in the Users table).
Example: User Per has created these records in Colors: Red Blue Black
User Phil has created the record in Colors. Blue
Now I want to select the users that have created BOTH Blue and Red. Can I do this in one select statement?
Thanks!