I'm making a Stored Procedure that basically concatenates a long string with data from many records.
I want to do:
set @output = @output + 'aaa' + LINEBREAK
How do I specify that line break?
I'm making a Stored Procedure that basically concatenates a long string with data from many records.
I want to do:
set @output = @output + 'aaa' + LINEBREAK
How do I specify that line break?
DECLARE @LINEBREAK AS varchar(2)
SET @LINEBREAK = CHAR(13) + CHAR(10)