You can retrieve comma separated values from a database table using following type of SQL scripts DECLARE @varList VARCHAR(1000) SET @varList = SPACE(0) SELECT @varList = @varList + ', ' + ContactName… more →
HP's Bloghspinfo wrote 3 months ago: You can retrieve comma separated values from a database table using following type of SQL scripts DE … more →