I,m tryin using FullText on mysql 5.6 innodb I nees a query like:
select * from table_name where col like '%xamp%'
I try:
select * from table_name where MATCH(col) AGAINST ("*xamp*")
But don't work
I need search all words that has "xamp",
If I use:
select * from table_name where MATCH(col) AGAINST ("example")
Works fine.
is possible do it?