Forum Moderators: open
When I do:
SELECT * FROM inventory WHERE match(description) AGAINST('search phrase'); There's no problem. When I do:
SELECT * FROM inventory WHERE match(header) AGAINST('search phrase'); There's no problem. But when I try to use both columns:
SELECT * FROM inventory WHERE match(header,description) AGAINST('search phrase'); I get "#1191 - Can't find FULLTEXT index matching the column list"
Both columns have FULLTEXT indexes. MySQL docs show the syntax as: MATCH (col1,col2,...) AGAINST (expr [search_modifier])
Totally stumped.