Home » MYSQL » MySQL Triggers » Question
  1. For which of the following are triggers not supported?
    1. views
    2. insert
    3. update
    4. delete
    5. None of these
Correct Option: A

In MySQL, the triggers are run only after the table modifications like insert, update and delete are run. Triggers are not supported for views. In order to create a trigger, the CREATE TRIGGER statement is used.



Your comments will be displayed only after manual approval.