I have data in an MS Access query that looks like this.
| GroupID | GroupName | RateID |
|---|---|---|
| 307819 | AL0007 | 32282 |
| 307817 | AL0007 | 32284 |
| 307816 | AL0007 | 32280 |
I need to put it in a table that looks like this.
| GroupName | RateID2 | RateID3 | RateID4 |
|---|---|---|---|
| AL0007 | 32282 | 32284 | 32280 |
I have not been able to figure out how to write the correct query to populate the table correctly. I am hoping that someone can shove me in the right direction.
Any assistance would be greatly appreciated.