This string works
"select 'http://' + Url Url, Title, Body, length(Body) Size, id, Visited from html where Title\Meta\Body likep $query and (Title\Meta\Body like '(resume,resum\351,curriculum vitae,cv,bio,profile)')">
This one doesn't
"select 'http://' + Url Url, Title, Body, length(Body) Size, id, Visited from html where Title\Meta\Body likep $query and (Title\Meta\Body like '((resume education),resum\351,curriculum vitae,cv,bio,profile)')">
The difference is nested parentheses (resume education)
The entry I want to select must contain BOTH the words resume and education, or ONE of the other terms.
What is the correct way to write this?
Thanks
Mike Clark
"select 'http://' + Url Url, Title, Body, length(Body) Size, id, Visited from html where Title\Meta\Body likep $query and (Title\Meta\Body like '(resume,resum\351,curriculum vitae,cv,bio,profile)')">
This one doesn't
"select 'http://' + Url Url, Title, Body, length(Body) Size, id, Visited from html where Title\Meta\Body likep $query and (Title\Meta\Body like '((resume education),resum\351,curriculum vitae,cv,bio,profile)')">
The difference is nested parentheses (resume education)
The entry I want to select must contain BOTH the words resume and education, or ONE of the other terms.
What is the correct way to write this?
Thanks
Mike Clark