How you get new line or line feed in Sql Query ?
Thanks nice Blog and nice information my problem solve from this
KuldipMCA
2009-07-06 06:40:01
+2
A:
You could do Char(13) and Char(10). Cr and Lf.
Char() works in SQL Server, I don't know about other databases.
jvanderh
2009-07-06 06:28:02
A:
use CHAR(10) for New Line in SQL char(9) for Tab and Char(13) for Carriage Return
Vinit Prajapati
2009-11-13 05:35:27