alohaaaron
Programmer
Hi, I'm trying to speed up my query by indexing for full-text and doing a full-text search but when I search by full-text nothing is returned.
SELECT * from my_table WHERE MATCH(column_a) AGAINST ('WILLIAM*'); //nothing is returned
column_a contains WILLIAMABC and is of type varchar (20)
if I run a query:
SELECT * from my_table WHERE column_a LIKE 'WILLIAM%'; it works great.
Do I have the syntax correct?
Thanks!
SELECT * from my_table WHERE MATCH(column_a) AGAINST ('WILLIAM*'); //nothing is returned
column_a contains WILLIAMABC and is of type varchar (20)
if I run a query:
SELECT * from my_table WHERE column_a LIKE 'WILLIAM%'; it works great.
Do I have the syntax correct?
Thanks!