InterviewSolution
Saved Bookmarks
| 1. |
For what can the FULLTEXT indexes be created for?(a) MyISAM(b) InnoDB(c) MEMORY(d) TRANSITION |
|
Answer» Right option is (a) MyISAM For explanation: 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. |
|