I have a table of plans e.g.
id | service_1 | service_2 | ...
---------------------------------
1 | true | true | ...
2 | true | false | ...
3 | false | true | ...
I am generating the permutation of rows by left joining the table on itself (any number of times).
SELECT t1.id, t2.id, t3.id
FROM plans AS t1
LEFT JOIN plans AS t2
ON t1.id != t2.id
AND ...
LEFT JOIN plans AS t3
ON t1.id != t2.id AND t2.id != t3.id AND t3.id != t1.id
AND ...
How can I generate all the different combinations that provide service_1 and service_2 whilst avoiding duplication. The joining row cannot contain the same service e.g.
id | service_1 | service_2 | id | service_1 | service_2 |
---------------------------------------------------------
1 | true | true |NULL| NULL | NULL |
2 | true | false | 3 | false | true |
I am struggling with the join conditions for this approach. Also, is this fundamentally the wrong approach for solving this problem?
Possible ways I am trying to avoid duplication are:
ordered sets (I am yet to get this working) e.g. t1.id < t2.id
sort(array[t1.id,t2.id]) AS ids ... GROUP BY ids