How can I insert the data that contain the line breaks or hard return ?
Printable View
How can I insert the data that contain the line breaks or hard return ?
via what mechanism?
You can concatenate a CHR(10).Quote:
Originally posted by Blu
How can I insert the data that contain the line breaks or hard return ?
Code:INSERT INTO blah ('blah blah blah blah blah blah ' || CHR(10) ||
'blah blah blah blah blah blah ' );
Thanks.