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

The trigger creation construct in MySQL is the ‘CREATE TRIGGER’ construct. It specifies components like 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.