I need to make a query that updates text with line breaks. I tried using \n but literally inserted "\ n".
Example:
update table set text = "first line\nsecond line"
I want it to display this text as:
"first line second line"
not like "first line\nsecond line" .
When I do this with .NET, it works, but not on the stored procedure.
Does anyone know how to do this?
source share