Please help on this query :(
COL X COL Y
1 A
1 B
1 C
2 A
2 B
2 C
3 A
3 B
3 C
The output should be
COL X COL Y
1 A or B or C
If 1 picks A , Then 2 Should not pick A (It can pick B or C) , If 2 Picks B then 3 should not pick B.
The out put should be like
1 A
2 B
3 C
or
1 C
2 A
3 B
or
...
A,BandCfor each and everyX-- or are some variations possible (say3A,3Bbut no3C?)