Hi I am using following code to replace '[' only in all instances where it occurs right after a backslash '\':
UPDATE articles SET notes = REPLACE (notes, '\[', '\(')
However, '[' is replaced everywhere even when '\' and '[' don't appear together. What am I missing?