adam84 Posted February 8, 2007 Share Posted February 8, 2007 I am using mysql 5.0 and I wrote a query using the MATCH function (i guess you can call it that) and I keep getting this error any ideas? Table sport: sportID int sportName varchar famousPlayers longtext ..... SELECT * FROM sport WHERE MATCH ('famousPlayer') AGAINST ('Mike'); MySQL said: #1191 - Can't find FULLTEXT index matching the column list Anyone know what that means, or how i can fix it...? thanks Link to comment https://forums.phpfreaks.com/topic/37651-mysql-match/ Share on other sites More sharing options...
artacus Posted February 8, 2007 Share Posted February 8, 2007 1) You spelled your column name wrong 2) You either need a full text index on famousPlayers or you need to run MATCH AGAINST in boolean mode. Link to comment https://forums.phpfreaks.com/topic/37651-mysql-match/#findComment-180121 Share on other sites More sharing options...
adam84 Posted February 8, 2007 Author Share Posted February 8, 2007 i manually typed the statement in. I made sure that it was spelt correct. What is a full text index? I have never hear dof it before. Link to comment https://forums.phpfreaks.com/topic/37651-mysql-match/#findComment-180124 Share on other sites More sharing options...
fenway Posted February 8, 2007 Share Posted February 8, 2007 MATCH... AGAINST requires a fulltext index on the indicated columns... you may want to consult the refman to review the limitations of this type of index. Link to comment https://forums.phpfreaks.com/topic/37651-mysql-match/#findComment-180128 Share on other sites More sharing options...
artacus Posted February 8, 2007 Share Posted February 8, 2007 I made sure that it was spelt correct. What is a full text index? I have never hear dof it before. Silly me, I should have known that spelling wouldn't be an issue with you. Link to comment https://forums.phpfreaks.com/topic/37651-mysql-match/#findComment-180226 Share on other sites More sharing options...
worldworld Posted February 10, 2007 Share Posted February 10, 2007 Please see here for details... Link to comment https://forums.phpfreaks.com/topic/37651-mysql-match/#findComment-181497 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.