Select CountryName from Application.Countries Declare @val Varchar(MAX); Select @val = COALESCE(@val + ', ' + CountryName, CountryName) From Application.Countries Select @val;