In ANSI SQL is it possible to append a string field together over many records that are grouped ?
Example
a database list contains 10 records as follows :-
number letter
1 a
1 b
1 c
2 d
2 e
3 f
3 g
3 h
3 i
3 j
I want the SQL output to look like this :-
number string
1 a,b,c
2 d,e
3 f,g,h,i,j
I want to group the number field but create a concatenated string (comma delimited) showing all the sub records.
Is this possible?
Example
a database list contains 10 records as follows :-
number letter
1 a
1 b
1 c
2 d
2 e
3 f
3 g
3 h
3 i
3 j
I want the SQL output to look like this :-
number string
1 a,b,c
2 d,e
3 f,g,h,i,j
I want to group the number field but create a concatenated string (comma delimited) showing all the sub records.
Is this possible?