Is there an aggregate function to concatenate strings? If not, can you provide some direction on how to make one? So something like
would return something like
Code:
select agg_concat(first_name, ', '), last_name from my_table group by last_name;
Code:
John, Bob, Bill Smith
Mike, Joe, Steve Jones