Q. What is def 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: (B)
table name
Explanation: This question is about understanding the parts of a MySQL trigger statement. Triggers are like special instructions that run automatically when something happens to a table. Let's break down the code: