I'm trying to group recordsets based on their IDs. This recordset has two columns: customer_id, last_namehowever I can't come up with a function to concatenate the last names. So if I had this:customer_id | last_name1 brock1 parker1 cassidy3 osborne4 watson4 gordon
it would turn to this:customer_id | last_name1 brock,parker,cassidy3 osborne4 watson,gordon
Any ideas? Someone mentioned cursors before, but I think it would run slow.