Trying to understand CHAR (10) and CHAR (13) in SQL Server CR (13) + LF (10) combine to create 1 total carriage return If you do it in the opposite order, the LF forces the CR to be on a new line, producing 2 carriage returns It's why in Visual Basic, for example, they call it vbCrLf Always put the carriage return first If you're just printing stuff in SSMS, though, you only need one or the other
upgrade - How to download and offline install Visual Studio 2022 . . . Go to the Visual Studio 2022 Release History page and download a particular fixed version bootstrapper (e g vs_Enterprise17 13 0), copy it into your layout, and use it to update the layout to that exact version specified in the bootstrapper Run the --layout command in an elevated prompt to download the latest packages into your layout
Difference between chr (13) and chr (10) - Stack Overflow Chr(10) is the Line Feed character and Chr(13) is the Carriage Return character You probably won't notice a difference if you use only one or the other, but you might find yourself in a situation where the output doesn't show properly with only one or the other So it's safer to include both