I am having the following problem:
I have a table T which has a column Name with names. The names have the following structure:
A\\\\B\\C
You can cre
Not exactly sure by what you mean but, this should work.
select replace('A\\B\C', '\', '\\');
It's basically going to replace \ whereever encountered with \\ :)
Is this what you wanted?