I need to display text with line breaks in email. The source database column has datatype varchar2(1000).
However in sql workshop, when i update it using CHR(10), it does not introduce line breaks and the output comes in single line. Even in application/email body, its showing as single line.
update text set text_content='Life'
||CHR(10)
||CHR(10)
'The very essence';
The output is simply: Life The very essence.
Instead of: Life
The very essence.
How can i introduce line breaks?
Apex version : 20.1
``` to display line breaks – Koen Lostrie Dec 14 '20 at 14:35
is working. – Velocity Dec 14 '20 at 15:06