InterviewSolution
Saved Bookmarks
| 1. |
For which of the following are triggers not supported?(a) delete(b) update(c) insert(d) views |
|
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. |
|