I have simple search function that uses
WHERE data LIKE '%keyWord%';
but what if I use many key words
"many key words"
and my data contains
"some key data"
I want them to match up even if one word matches ("key" in this case). Can this be achieved in one MySQL query?