How to type a new line character in SQL Server Management Studio
You can’t. (Edit: other good answers have been posted with some workable methods.) My preferred method to do this is via a direct SQL update. Two general techniques: –Literal returns inside strings UPDATE mytable SET textvalue=”This text can include line breaks” WHERE rowid = 1234 –Concatenating CHAR codes UPDATE mytable SET textvalue=”This text” + CHAR(10) … Read more