You need to write a function that takes in the ID and returns a concatenated string of Values. create a function with something like this:
declare @res varchar(100)
select @res = isnull(@res,'' ) + ',' + value from yourtable where Id = @t
return @res
then call the function in the SELECT as
SELECT ID, dbo.fnGetValues(Id)
FROM yourTable
******************
Dinakar Nethi
Life is short. Enjoy it.
******************