How to GROUP BY and CONCATENATE fields in Redshift e.g. If I have table
ID COMPANY_ID EMPLOYEE
1 1 Anna
2 1 Bill
3 2 Carol
4 2 Dave
How can I get result like this
COMPANY_ID EMPLOYEE
1 Anna, Bill
2 Carol, Dave
There are some solutions for PostgreSQL, but none of functions mentioned in those answers are available in Redshift rightnow.