Hi
Is there any way you can concatenate multiple text values in the one field? The following query....
Code:
select distinct name.id, education.course
from name
inner join education on name.id = education.id
...returns a new record for each course the person has completed. Is there a way that all these values could be concatenated in one field?
Currently something like this is returned.
ID course
111 bachelor of arts
111 bachelor of law
111 master of arts
The following would be ideal.
ID course
111 bachelor of arts, bachelor of law, master of arts
Is this possible?
Thanks in advance for any help
