I'm having trouble where our database has thousands of records with extra slashes in the name. However I can't seem to do any queries that will tell me which records those are, for example:
select * from MYTABLE where name like '%\%';
OR
select * from MYTABLE where name like '%\%';
OR
select * from MYTABLE where name like '%\\%';
I just get either no results or it doesn't recognize an end to my like clause.
I've googled like crazy but can't seem to find anything about this. Anyone have a suggestion?
Thanks in advance