Here's the basic query, I'm trying to retrive a table that has Cici's, but since it's in sql it's Cici\'s. Here's the results I'm getting thus far.
Am I missing something here that there's supposed to be something in between the actual letters of the word and the escaped lettersCode:SELECT display FROM users WHERE display LIKE '%Cici%' ; returns as should SELECT display FROM users WHERE display LIKE '%Cici\'%'; returns nothing SELECT display FROM users WHERE display LIKE '%i\'%' ; returns nothing SELECT display FROM users WHERE display LIKE '%\'%' ; returns all quoted


Reply With Quote

Bookmarks