MySQL Full-Text Search
- A FULLTEXT index cannot be created for multiple columns.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: A
In MySQL, a full-text search is based on the FULLTEXT indexes. A FULLTEXT index can be created both for a single column and for multiple columns. Searching is possible across columns.
- FULLTEXT indexes can be created only for ____________.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: B
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.
- Which search mode uses natural language search as a subroutine?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: D
The query expansion search occurs in two phases. The natural language search is applied in the first phase. Query expansion search is one of the three modes of fulltext searching.
- The indicator of presence or absence of a word in search is used in which mode?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: A
A full text search capability is provided in MySQL. It facilitates to look for words or phrases without using pattern-matching operations. Boolean search is one of the three modes.
- In which mode of search is the search string parsed into words and the search looks for rows?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: C
In MySQL, a full text search capability is provided, which enables to look for words or phrases without using pattern-matching operations. There are three kinds of full text searches.