I was trying to fetch distinct users with similar interests and stumbled upon this problem. Basically I wanted to do something like:
SELECT DISTINCT(uid)
FROM interest
WHERE (interest , score) IN (('family' , > 0.32), ('paris' , > 0.77));
I get that I can join multiple where statements to achieve this but this would be a more cleaner approach. Is this possible to do?