I'm planning to create search queries using LIKE statements, and not full-text index.
The problem is how would you match the entire word?
If I say LIKE '%table%'.
How would I get it to match just the word table? If I do LIKE '% table %', then the case where table is the first word would not be shown in queries.