i have SQL SELECT
query with long string, example:
SELECT RTRIM(CAST(DNH_INFO AS VARCHAR(150)))
'_This is _a very _long string _separated _with underline'
as i result a want to break lines by underline but still remain the same string, exmaple:
'_This is
_a very
_long string
_...'
Is there any SQL function with which i can solve this problem?
Thanks for help!