I'm running the following sql query in my Oracle Apex application:
SELECT column1 || chr(13) || chr(10) || column2 FROM table;
I want the second column to be displayed on a new line. This doesn't seems to be working in my Apex application. However it's working on SQL*PLUS.
Any ideas what could be the problem here and how can I fix it?