I want to query for the exact match of a string from a database table.
When I write the query as
select description from tproduct where description
You can use a regular expression with a special pattern for word boundaries.
select description from tproduct where description regexp '[[:<:]]diamond[[:>:]]'
See REGEXP.