-
What is xyz in the following statement?
SELECT * FROM my_table WHERE MATCH(abc) AGAINST('xyz');
-
- search string
- database name
- column name
- table name
- None of these
Correct Option: A
The natural language fulltext search in MySQL tables is carried out using the MATCH and AGAINST clause. The MATCH clause is used to specify the column and AGAINST specifies the search string.