Hi,
I'm trying to concatenate string values from the same field in different rows. I'd like to do something similar to the sum function with a group by criteria.
For example, if my initial table looks like this:
CASE_ID SUMMARY
------- -------
15001 Text
15002 Text
15003 ABC
15003 DEF
15003 GHI
15004 Text
This should be the result:
CASE_ID SUMMARY
------- -------
15001 Text
15002 Text
15003 ABCDEFGHI
15004 Text
Thanks!
I'm trying to concatenate string values from the same field in different rows. I'd like to do something similar to the sum function with a group by criteria.
For example, if my initial table looks like this:
CASE_ID SUMMARY
------- -------
15001 Text
15002 Text
15003 ABC
15003 DEF
15003 GHI
15004 Text
This should be the result:
CASE_ID SUMMARY
------- -------
15001 Text
15002 Text
15003 ABCDEFGHI
15004 Text
Thanks!