What is the best way to handle this?
I have a SP that needs to append data to a field that is type text. I wanted to do a query and place the value in a local variable in the SP and say Comment = @Comment + ' ' + @NewComment, but I cannot have a local variable in a SP that is type text.
How do I append data to a field that is type text in a Stored Procedure?
Thanks