Insert a line break in a SQL Server not working – Asp.net
example 1 declare @text VARCHAR(100) SET @text = 'this is the frist line' + CHAR(10)+CHAR(13) + 'Second line' select @text example 2 select 'This is line 1.' + CHAR(13)+CHAR(10) + 'This is line 2.' why is not it working? Not…