I have a SQL 2005 stored procedure to generate an email when passed parameters such as receipient, subject etc
One of the paramteres passed to it is @.body which is the body text of the message. I want to be able to add a couple of blank lines and then some footer information. This is working right now except I can't find the right way to add newlines into the string within the store procedure, so my footer information just tags right on after the bodytext.
I have tried \n but that literally adds the two characters \ and n
Can anyone advise how to generate newlien sequences in T-SQL.
Regards
Clive
Use the CHAR function e.g. CHAR(13) + CHAR(10)
Seehttp://doc.ddart.net/mssql/sql70/ca-co_4.htm
No comments:
Post a Comment