Q. What is abc 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: (A)
column name
Explanation: Column name: In the MATCH clause, abc represents the name of the column against which the full-text search is performed. In this case, the search is conducted in the column named abc within the my_table table.