[ACCEPTED]-How do I add a Line break in a SQL Server Stored Procedure?-stored-procedures
Accepted answer
DECLARE @LINEBREAK AS varchar(2)
SET @LINEBREAK = CHAR(13) + CHAR(10)
0
Try this:
set @output = @output + 'aaa' + char(13)
0
Source:
stackoverflow.com
More Related questions
Cookie Warning
We use cookies to improve the performance of the site. By staying on our site, you agree to the terms of use of cookies.