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
You could use LIKE:
LIKE
SELECT NAME FROM T WHERE NAME LIKE '%\\\\%';