I need help finding all possible combinations of values โโin the database, for example, I have this table:
ITEM_SET Support I1 0.244999999 I2 0.274999999 I3 0.258333333 I4 0.103333333
I need to find every possible combination:
I1,I2 I1,I2,I3 I1,I2,I3,I4 I1,I3 I1,I2,I4 I1,I4 I1,I3,I4 I2,I3 I2,I3,I4 I2,I4 I3,I4
* Please note that this formatting is read-only, since I only need a list of possible combinations, such as this table:
ITEMSET I1 I2 I3 I4 I1,I2 I1,I3 I1,I4 I2,I3 I2,I4 I3,I4 I1,I2,I3 I1,I2,I4 I1,I3,I4 I2,I3,I4 I1,I2,I3,I4