InterviewSolution
Saved Bookmarks
| 1. |
Which of these is defined to execute when the table is modified only?(a) Stored functions(b) Stored procedures(c) Triggers(d) Events |
|
Answer» Correct choice is (c) Triggers For explanation I would say: In MySQL, triggers are associated with a table. They are defined to execute when the table is modified via INSERT, DELETE or UPDATE statements. MySQL supports objects to be stored on server side. |
|