Re: finding backslash

2004-11-10 Thread Gleb Paharenko
Hello. To search for `\', specify it as `' (the backslashes are stripped once by the parser and another time when the pattern match is done, leaving a single backslash to be matched). Steve Buehler <[EMAIL PROTECTED]> wrote: > I am trying to find everything in a column that has a backs

finding backslash

2004-11-10 Thread Steve Buehler
I am trying to find everything in a column that has a backslash in it and the select statement that I am trying to use doesn't find any of them. My statement is: SELECT * FROM `team` WHERE `name` LIKE '%\%' I have also tried: SELECT * FROM `team` WHERE `name` LIKE '%\\%' Any idea how to search