Greetings
I have a table that looks like this:
Set Column: Each Set value is repeated 5 times.
X Column: For each Set, there are always 5 integers in DESC order.
Y Column: For each Set, there are always 5 integers, but in mixed order.
Here is my question - I need to identify the Set values where X and Y represent the SAME set of 5 integers. In the example table above, Sets 2 and 3 pass this test, but Set 1 does not.
much thanks for any assistance
I have a table that looks like this:
Code:
[b][u]PK_ID Set X Y[/u][/b]
100 1 92 21
101 1 84 6
102 1 71 93
103 1 21 84
104 1 6 66
105 2 55 9
106 2 54 55
107 2 26 6
108 2 9 54
109 2 6 26
110 3 92 88
111 3 89 23
112 3 88 19
113 3 23 92
114 3 19 89
115 4 68 73
116 4 53 18
... etc ...
Set Column: Each Set value is repeated 5 times.
X Column: For each Set, there are always 5 integers in DESC order.
Y Column: For each Set, there are always 5 integers, but in mixed order.
Here is my question - I need to identify the Set values where X and Y represent the SAME set of 5 integers. In the example table above, Sets 2 and 3 pass this test, but Set 1 does not.
much thanks for any assistance