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

In MySQL, the trigger creation construct 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.