where message like '%B%'
The above where clause might mean retrieving records which has the SearchKeyWord "B" in the message field.
Let's suppose the message has HTML Tags inside.
Although it has no "B" in pure text, if it has <Br>,<B>,</B>, or <font color="Blue">, the record will be retrieved by the above where clause.
I like to prevent it.
Can I make the "WHERE clause" retrieve record which has "B" in the pure text?