I tried using LIKE and CONTAINS, but neither worked
My column named Column in my table contains "asdl, test3, asdklj, dlksj" and I want to find "test3" in there using this string "test2, test3, test4"? How can I do this?
$string = "test2, test3, test4";
"SELECT * FROM table WHERE CONTAINS(Column, ".$string.")"
Another option is to use LIKE, but doesn't work either:
$string = "test2, test3, test4";
"SELECT * FROM table WHERE Column LIKE '%".$string."%'"
**
In summary I need to find a word in $string that matches with a word in Column.
**