I have two instances user1 and user2. They have colors
u_id | color<br>
1 | red<br>
1 | green<br>
2 | red<br>
2 | blue<br>
I need a mysql request, that will returns only distinct colors for both users
Result example:
u_id | color<br>
1 | green<br>
2 | blue<br>

