the query is: SELECT * FROM products
WHERE MATCH (short
,meddes
) AGAINST('leather desk set')
When i run it i get the error:
#1191 - Can't find FULLTEXT index matching the column list
But, If i run it as:
the query is: SELECT * FROM products
WHERE MATCH (short
) AGAINST('leather desk set')
or:
the query is: SELECT * FROM products
WHERE MATCH (meddes
) AGAINST('leather desk set')
It works.
The second problem is that when i made this database I wasnt thinking and gave 2 bad Field names... one is short
and the other is long
.. i'll be fixing that, but i dont think that has anything to do with this problem..
Thanks
David