1.

For which of the following are triggers not supported?(a) delete(b) update(c) insert(d) viewsI had been asked this question by my school teacher while I was bunking the class.My question is based upon Triggers in chapter Stored Programs of MySQL

Answer»

Right option is (d) VIEWS

Explanation: 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.



Discussion

No Comment Found

Related InterviewSolutions