This content has been marked as final.
Show 4 replies
-
Re: How to concatinate records goroupping by value
Marco Wedel Dec 10, 2017 6:08 PM (in response to Arman Muratov)-
Re: How to concatinate records goroupping by value
Arman Muratov Dec 10, 2017 11:46 PM (in response to Marco Wedel )This is a very useful article/
Thanks!
-
-
Re: How to concatinate records goroupping by value
Stefan Wühl Dec 10, 2017 6:30 PM (in response to Arman Muratov)In the LOAD script, use a LOAD with an aggregation function and a GROUP BY clause, like
LOAD
YourNumericFieldName,
Concat( YourCharFieldName, ', ') as ConcatenatedChars
FROM ....
GROUP BY YourNumericFieldName;
-
Re: How to concatinate records goroupping by value
Arman Muratov Dec 10, 2017 11:44 PM (in response to Stefan Wühl )It works!
Thank you very much!
-