© 2026 LinearBytes Inc.
Search posts, tags, users, and pages
Thành Bùi
Clean
1.String_agg ID COMPANY_ID EMPLOYEE 1 1 Anna 2 1 Bill 3 2 Carol 4 2 Dave SELECT company_id, string_agg(employee, ', ') FROM mytable GROUP BY company_id; COMPANY_ID EMPLOYEE 1 An...
No responses yet.