InterviewSolution
Saved Bookmarks
| 1. |
What executes on a time activated basis according to a schedule?(a) Stored program(b) Events(c) Triggers(d) Stored procedures |
|
Answer» The correct option is (b) Events The best I can explain: In MySQL, the events execute on a time activated basis according to a schedule. Triggers are defined to execute when the table is modified via INSERT, DELETE or UPDATE statements. |
|