|
Triggers are events that are executed whenever an insert or delete or update happens. Basically, triggers are events and the code associated with triggers is executed automatically when the event occurs. These events are purely database events.
Procedures on other hand, should be run explicitily by the user either from database or from user applications.
|