Hello Everyone,
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 BL, there is a row for AIs. It looks something like this:
BL AIs
12345 135790, 124680, 567321
54321 975315, 456123
What I need is a table that looks like this:
BL AI
12345 135790
12345 124680
12345 567321
54321 975315
54321 456123
How do I do this? Can you show me the step by step procedure? I am totally new to database stuff.
Thanks in advance.
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 BL, there is a row for AIs. It looks something like this:
BL AIs
12345 135790, 124680, 567321
54321 975315, 456123
What I need is a table that looks like this:
BL AI
12345 135790
12345 124680
12345 567321
54321 975315
54321 456123
How do I do this? Can you show me the step by step procedure? I am totally new to database stuff.
Thanks in advance.