Is there a simple solution to emulate the GROUP_CONCAT function from MySQL in crate 3.3 to concatinate the values of a string column when using GROUP BY as in:
SELECT column_a,GROUP_CONCAT(column_b,',')
FROM "some_db"."some_table"
GROUP BY column_a
LIMIT 10;
Thank you joemoe.
I was just hoping that there was some clever workaround, but now I will do the query without the group by and and do the grouping at the client.