I have \n
in my database after importing from Mysql. How can I replace '\n' to be a real new line?
I tried
UPDATE table SET column = replace(column, '\n', "\n")
in several variations but without success.
I have \n
in my database after importing from Mysql. How can I replace '\n' to be a real new line?
I tried
UPDATE table SET column = replace(column, '\n', "\n")
in several variations but without success.