C
CMA
I'm looking for a unique way to return data with a query.
Using the example below - Right now, in a relational database, numbers and
letters are in two separate, linked tables.
I'd like to move from this format:
1 AA
1 BB
2 CC
3 DD
3 EE
3 FF
4 GG
4 HH
5 II
To this format:
1 AA BB
2 CC
3 DD EE FF
4 GG HH
5 II
Is there a way to acheive this? my data has about 10,000 records - I've hit
a wall in an attempt to do this using a pivot table...
Using the example below - Right now, in a relational database, numbers and
letters are in two separate, linked tables.
I'd like to move from this format:
1 AA
1 BB
2 CC
3 DD
3 EE
3 FF
4 GG
4 HH
5 II
To this format:
1 AA BB
2 CC
3 DD EE FF
4 GG HH
5 II
Is there a way to acheive this? my data has about 10,000 records - I've hit
a wall in an attempt to do this using a pivot table...