Q. What is xyz in the following MySQL statement?
SELECT * FROM my_table WHERE MATCH(abc) AGAINST('xyz');
SELECT * FROM my_table WHERE MATCH(abc) AGAINST('xyz');
β
Correct Answer: (C)
search string
Explanation: This question is asking about the part of the MySQL code that represents the search string.