I am new to sql server. I have a query that retrieves the desired data from various tables. The result looks like this with other columns, that contain things like name, removed for simplicity.
 id  xvalue
  1     x
  1     y
  1     z
  2     x
  2     y
  2     z
  3     x
  3     y
  3     z
I would like to wrap the query with a select to concatenate the result set into an new result set like this.
  id   xvalue
  1     x,y,z
  2     x,y,z
  3     x,y,z
I have tried to figure out how use the for xml path option and cannot seem to find the correct syntax.
 
     
     
     
     
    