First of all I'm sorry if this question has been asked before, I really tried searching but couldn't find on what I was looking for.
Okay so this is my table. I want to have a query where I select the user id's who have the same exact value more then 2 times.
| USER ID|COLOR|
---------|-------
| 1 | BLUE
| 2 | BLUE
| 3 | RED
| 4 | BLUE
So my query in this case would return
| USER ID|
|--------|
| 1 |
| 2 |
| 4 |
Thank you very much!