Greetings - I think I'm missing something obvious, but I could use a hand.
My table looks like...
ID(pk) Slot Grp1 Grp2
100 1 X W
101 1 P D
102 1 X E
103 2 U V
104 2 T P
105 2 S Y
106 3 etc...
After every 3 rows, the Slot number increases by 1.
I need to write a query that has this 'un-normalized' structure...
Slot N1 N2 N3 N4 N5 N6
1 X W P D X E
2 U V T P S Y
3 etc...
The values in the 'N?' columns MUST preserve the order they have in the table. Thanks for any assistance.
My table looks like...
ID(pk) Slot Grp1 Grp2
100 1 X W
101 1 P D
102 1 X E
103 2 U V
104 2 T P
105 2 S Y
106 3 etc...
After every 3 rows, the Slot number increases by 1.
I need to write a query that has this 'un-normalized' structure...
Slot N1 N2 N3 N4 N5 N6
1 X W P D X E
2 U V T P S Y
3 etc...
The values in the 'N?' columns MUST preserve the order they have in the table. Thanks for any assistance.