Is there a way to use position or another function to find strings in a field but not have it be part of another word? For example if I am looking for the word "bench" with position I would do something like this
POSITION('bench' IN products)
The products column would look something like this
**Products**
tool bench
benchpress
park bench
benchmark
bench heater
utility bench tool
I only want to match the rows where bench is NOT part of another word (don't want to match benchpress or benchmark). Thank you