Q. What is abc in the following MySQL statement?
CREATE TRIGGER abc (...) (...) ON def FOR EACH ROW ghi;
CREATE TRIGGER abc (...) (...) ON def FOR EACH ROW ghi;
β
Correct Answer: (A)
trigger name
Explanation: This question is about understanding the parts of a MySQL trigger creation statement.