How to insert a line break in a SQL Server VARCHAR/NVARCHAR string -
i didn't see similar questions asked on topic, , had research i'm working on right now. thought post answer in case else had same question.
char(13) cr. dos-/windows-style crlf linebreaks, want char(13)+char(10), like:
'this line 1.' + char(13)+char(10) + 'this line 2.'
Comments
Post a Comment