Vypadá to jako XOR
mezi poli:
WITH set1 AS
(
SELECT * FROM unnest('{1, 2, 5, 15}'::int[])
), set2 AS
(
SELECT * FROM unnest('{1, 2, 3, 6, 7, 9, 15}'::int[])
), xor AS
(
(SELECT * FROM set1
UNION
SELECT * FROM set2)
EXCEPT
(SELECT * FROM set1
INTERSECT
SELECT * FROM set2)
)
SELECT array_agg(unnest ORDER BY unnest)
FROM xor
Výstup:
"{3,5,6,7,9}"
Jak to funguje:
- Odpojte obě pole
- Vypočítat SUM
- Vypočítejte INTERSECT
- Ze SUM – INTERSECT
- Kombinovat do pole
Alternativně můžete použít součet obou operací mínus (kromě):
(A+B) - (A^B)
<=>
(A-B) + (B-A)
Pomocí FULL JOIN
:
WITH set1 AS
(
SELECT *
FROM unnest('{1, 2, 5, 15}'::int[])
), set2 AS
(
SELECT *
FROM unnest('{1, 2, 3, 6, 7, 9, 15}'::int[])
)
SELECT array_agg(COALESCE(s1.unnest, s2.unnest)
ORDER BY COALESCE(s1.unnest, s2.unnest))
FROM set1 s1
FULL JOIN set2 s2
ON s1.unnest = s2.unnest
WHERE s1.unnest IS NULL
OR s2.unnest IS NULL;
UPRAVIT:
Pokud chcete pouze prvky z druhého pole, které nejsou, použijte nejprve jednoduchý EXCEPT
:
SELECT array_agg(unnest ORDER BY unnest)
FROM (SELECT * FROM unnest('{1, 2, 3, 6, 7, 9, 15}'::int[])
EXCEPT
SELECT * FROM unnest('{1, 2, 5, 15}'::int[])) AS sub
Výstup:
"{3,6,7,9}"