Create Unduplicated Combinations
Howdy,
I'll just try and explain what I am looking for. Let's say I have a field called 'Flavor' with 10 flavors in it. I want to create all unique combinations against itself (Chocolate/Vanilla, Chocolate/Strawberry, etc.). This is a simple cartesian product of 100 combinations (10x10) created by adding my Flavor table to a query twice and not linking them. I can even get rid of unnecessary dupe combos like Chocolate/Chocolate. However, combos like Chocolate/Vanilla and Vanilla/Chocolate are technically the same thing but come up when I run my query. How can I get rid of these combos as well?
Thanks
:beerchug: