You can have multiple values of a column in single row with the help of following query in sql : on February 18, 2012 Get link Facebook X Pinterest Email Other Apps DECLARE @Result varchar(MAX)SELECT @Result=COALESCE(@Result+',','')+ fieldname from fielddefsselect @result Comments
Comments
Post a Comment