Say I have a table
MemberMoto ( MemberID int, Moto nvarchar(100) )
I need to build a proc that will return coma separated list of Moto values per user. I am looking for a way to accomplish this without using CURSOR/FETCH for performance reasons
Thank you!