search term=[\'ISBN number on site\'] the variable(column): sentence, in MySQL table. It consist many different sentence.
the sentence I want to look for is \"The
Try:
SELECT * FROM testtable where Sentence like '%ISBN number on%site%' ;
The wildcard can go in the middle of a string too.