Home » MYSQL » MySQL Triggers » Question
  1. What is abc in the following statement?
    CREATE TRIGGER pqr(...) (...) ON def FOR EACH ROW mno;
    1. table name
    2. trigger statement
    3. update statement
    4. trigger name
    5. None of these
Correct Option: D

In MySQL, the trigger creation construct is the ‘CREATE TRIGGER’ construct. It specifies the trigger name, the type of statement for which it is activated, and the table name and statement.



Your comments will be displayed only after manual approval.