So I have a problem that I don't think is too rare but having a brain fart.
So I have multiple sets of data.
Id1 Id2 Column1
1 2 A
1 2 B
1 2 C
1 3 A
1 3 B
1 3 C
1 4 A
1 4 D
1 4 E
So I have a 1 unique set of id1=1 with A, B, C and another uniquie set of id1=1 with A,D,E. How would I take the above result set and get the following result set
Id1 Column1
1 A
1 B
1 C
1 A
1 D
1 E
Since Id2 = 3 is not unique since there is already a set there with A,B,C.
Let me know if I am not explaining this clearly.
So I have multiple sets of data.
Id1 Id2 Column1
1 2 A
1 2 B
1 2 C
1 3 A
1 3 B
1 3 C
1 4 A
1 4 D
1 4 E
So I have a 1 unique set of id1=1 with A, B, C and another uniquie set of id1=1 with A,D,E. How would I take the above result set and get the following result set
Id1 Column1
1 A
1 B
1 C
1 A
1 D
1 E
Since Id2 = 3 is not unique since there is already a set there with A,B,C.
Let me know if I am not explaining this clearly.