Jedna metoda používá agregaci a having
:
select s.user_id
from settings s
where (key, value) in ( ('color', 'blue'), ('size', '5') )
group by s.user_id
having count(*) = 2;
To předpokládá, že neexistují žádná duplicitní nastavení (pokud ano, budete muset použít count(distinct)
).