Fulltext and composite indexes and how they affect the query
问题 Just say I had a query as below.. SELECT name,category,address,city,state FROM table WHERE MATCH(name,subcategory,category,tag1) AGAINST('education') AND city='Oakland' AND state='CA' LIMIT 0, 10; ..and I had a fulltext index as name,subcategory,category,tag1 and a composite index as city,state ; is this good enough for this query? Just wondering if something extra is needed when mixing additional AND 's when making use of the fulltext index with the MATCH/AGAINST. Edit: What I am trying to