How do you get all possible options based on 2 columns with a random value from the third column?
Id | color | shape
1 | red | square
2 | blue | square
3 | red | square
4 | red | circle
5 | blue | circle
So we have all possible shapes and colors with one random id
Id | color | shape or Id | color | shape
1 | red | square 3 | red | square
2 | blue | square 2 | blue | square
4 | red | circle 4 | red | circle
5 | blue | circle 5 | blue | circle