I need to do a query that updates text with line break, I tried using \n but it inserts "\n" literally.
Example:
update table set text = "first line\nsecond line"
I want it to show that text as:
"first line
second line"
and not as "first line\nsecond line"
.
When I do this with .net it works, but not on a stored procedure
Does anyone know how to do this?