SQL line break not working

后端 未结 6 1353
梦如初夏
梦如初夏 2021-01-29 15:05

I have below code:-

DECLARE @NewLineChar AS CHAR(23) = CHAR(13) + CHAR(10)
select \'abc\'+@NewLineChar+\'a\'

I expect the result to be:-

<
6条回答
  •  情歌与酒
    2021-01-29 15:45

    To test your output, if using SSMS make sure the option Retain CR/LF on copy or save is checked, else all pasted results will loose the line feed. You find this at settings, query results, sql server, results to grid.

提交回复
热议问题