joebananas
New Member
Can anyone tell me how to perform the equivalent of a Group Concat function in Progress SQL? I want to get a concatenation of multiple records into a single record.
For example, this SQL produces a set of data
SELECT data1 FROM table1 WHERE data2=True
Using a GroupConCat function I can get this,
SELECT GroupConcat(data1) FROM table1 WHERE data2=True
Any help would be appreciated
For example, this SQL produces a set of data
SELECT data1 FROM table1 WHERE data2=True
Code:
+-------+
| data1 |
+-------+
| somet |
| hing |
| like |
| this |
+-------+
Using a GroupConCat function I can get this,
SELECT GroupConcat(data1) FROM table1 WHERE data2=True
Code:
+---------------------+
| data1 |
+---------------------+
| something like this |
+---------------------+
Any help would be appreciated