I want to check if a column in my database contains words similar to my sample string. The opposite of
select * from myTable where name like '%words%';
so that if I have record with name=word I could retrieve it. With sample above I can only get result where words is a sub string of name column in myTable, therefore I cant get word