Home » MYSQL » MySQL Full-Text Search » Question
  1. What is abc in the following statement?
    SELECT * FROM student WHERE MATCH(abc) AGAINST('xyz');
    1. table name
    2. database name
    3. column name
    4. search string
    5. None of these
Correct Option: C

The MATCH clause is used to specify the column and AGAINST specifies the search string in the natural language full text search syntax. It is one of the three modes of full-text search.



Your comments will be displayed only after manual approval.