I want to query html in mysql i.e.
I have record in table say x with info feild value <p>y</p> . How can I query to match if <p>y</p> is present in that table .
select * from x where info="<p>y</p>";
is it only possible with full-text search or is there any other method too.
info like "%<p>y</p>%"what you searching for?info="<p>y</p>"work for you?