I have a table with a list of Business Locations
(BL) and for each BL, there may be multiple Account IDs (AI). For each unique AI, there is a row. It looks something like this:
BL AI
12345 135790
12345 124680
12345 567321
54321 975315
54321 456123
What I need is a table that looks like this:
BL AIs
12345 135790, 124680, 567321
54321 975315, 456123
How do I do this?
Thanks,
Sprite
(BL) and for each BL, there may be multiple Account IDs (AI). For each unique AI, there is a row. It looks something like this:
BL AI
12345 135790
12345 124680
12345 567321
54321 975315
54321 456123
What I need is a table that looks like this:
BL AIs
12345 135790, 124680, 567321
54321 975315, 456123
How do I do this?
Thanks,
Sprite