I have a table where a particular string field often includes unicode for single and double quotes inside of it: \u0027 and \u0022 respectively. So it turns out, I actually need them escaped even more. I need to put an extra \ in front of them.
For example, I need to change \u0027Hello, world\u0027 to \\u0027Hello, world\\u0027
What kind of SQL could perform this kind of an update on the table for all records?