I have a table that with 1 column that I need to create a dynamic list of combinations 3 wide.
Table:
letters
-------
a
b
c
d
e
need to output:
abc,abd,abe,acd,ace,ade,bcd,bce,cde
I can only have a unique combination, so no matter the order the combination cannot be used again. This needs...