Subject | Carriage return in SQL Script - Figured it out |
---|---|
Author | Todd Brasseur |
Post date | 2005-10-13T17:20:50Z |
I found a UDF that does this:
update propertyheader
set printednotes = 'test'||f_crlf()||'test2'
where roll = '1032837'
Todd
*****************************************************
Is it possible to update a 'memo' field with text including carriage
return line feeds in a script?
Something like:
update tablename
set memofield = 'First Line'||CRlf||'Second Line';
where field = ''XYZ'
Todd
update propertyheader
set printednotes = 'test'||f_crlf()||'test2'
where roll = '1032837'
Todd
*****************************************************
Is it possible to update a 'memo' field with text including carriage
return line feeds in a script?
Something like:
update tablename
set memofield = 'First Line'||CRlf||'Second Line';
where field = ''XYZ'
Todd