InterviewSolution
Saved Bookmarks
| 1. |
FULLTEXT indexes can be created only for ____________(a) MyISAM(b) InnoDB(c) MEMORY(d) TRANSITIONThis question was addressed to me in my homework.This intriguing question comes from Using Full Text Searches topic in section Using SQL to Manage Data of MySQL |
|
Answer» RIGHT OPTION is (a) MyISAM For EXPLANATION I would say: Full-text searches are based on the FULLTEXT indexes. They can be CREATED for MyISAM tables only. In MySQL, a full text search enables to look for words or phrases without USING pattern-matching operations. |
|