For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!
with t as ( select '10 ' str from dual ) select str,length(str)from t;"10 " 5
with t as
(
select '10
' str from dual
)
select str,length(str)
from t;
"10
" 5
How to remove the new line