Twój WHERE
klauzula wybiera wiersze, w których empgroupid
to 500 lub 501, a nie empid
s gdzie wszystkie empgroupid
s tworzą tablicę [500, 501]
.
Możesz użyć ARRAY_AGG
w HAVING
klauzula:
SELECT empid
FROM empgroupinfo
GROUP BY empid
-- ORDER BY clause here is important, as array equality checks elements position by position, not just 'same elements as'
HAVING ARRAY_AGG(DISTINCT empgroupid ORDER BY empgroupid) = ARRAY[500, 501]
W zależności od tego, gdzie [500, 501]
pochodzi z tablicy, możesz nie wiedzieć, czy sama jest posortowana, czy nie. W takim przypadku "zawiera AND jest zawarty przez" (operatorzy @>
i <@
) też powinno działać.
#= CREATE TABLE empgroupinfo (empid int, empgroupid int);
CREATE TABLE
Time: 10,765 ms
#= INSERT INTO empgroupinfo VALUES (1, 500), (1, 501), (2, 500), (2, 501), (2, 502);
INSERT 0 5
Time: 1,451 ms
#= SELECT empid
FROM empgroupinfo
GROUP BY empid
HAVING ARRAY_AGG(empgroupid ORDER BY empgroupid) = ARRAY[500, 501];
┌───────┐
│ empid │
├───────┤
│ 1 │
└───────┘
(1 row)
Time: 0,468 ms