I have a need to present a column of data as a single row field.
For example if a query returns a single column with 3 row values:
rec1='AAA'
rec2='BBB'
rec3='CCC'
I want to present it as:
rec='AAA; BBB; CCC'
How can this be done?
Ideally I would like to have this coded in a function.
Thanks for any help.
For example if a query returns a single column with 3 row values:
rec1='AAA'
rec2='BBB'
rec3='CCC'
I want to present it as:
rec='AAA; BBB; CCC'
How can this be done?
Ideally I would like to have this coded in a function.
Thanks for any help.