Hi,
I am trying to insert / append a Enter Key into a string so to achieve the effect as following:
Address:
4 Hollawood Road,
USA 123456
Some ppl recommended to use chr(10) or chr(13), however it did not seem to work after i tried as following statements.
SELECT 'abc' || chr(10) || 'def' AS TestStr FROM DUAL;
or
SELECT 'abc' || chr(13) || 'def' AS TestStr FROM DUAL;
Any body has any idea on this?
Thanks.
I am trying to insert / append a Enter Key into a string so to achieve the effect as following:
Address:
4 Hollawood Road,
USA 123456
Some ppl recommended to use chr(10) or chr(13), however it did not seem to work after i tried as following statements.
SELECT 'abc' || chr(10) || 'def' AS TestStr FROM DUAL;
or
SELECT 'abc' || chr(13) || 'def' AS TestStr FROM DUAL;
Any body has any idea on this?
Thanks.
Comment