vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Hi all, I'm currently in the process of switching all my mysql searches to use fulltext searching instead of using 'LIKE' After re-reading the mysql documentation three times (it's added as a note about a note or something) I find out how to create a fulltext index on my existing table: alter table pictures add fulltext (name,comment,category,owner,tags) Affected rows: 420 So far, so good, it seems But when I attempt to run a fulltext search, I get the following error: Can't find FULLTEXT index matching the column list The query was: SELECT filename,comment,name FROM pictures WHERE MATCH(name) AGAINST ('kittens') && owner='Frederik' LIMIT 0,3 What did I do wrong??? Thanks, Frederik |