1#select rows where myColumn has the actualy word (not just the string)
2#ie: the word has a space on one side of it
3SELECT * FROM myTable WHERE myColumn
4like 'myWord'
5or myColumn like 'myWord %'
6or myColumn like '% myWord'
7or myColumn like '% myWord %';