trigger

Triggers

A TRIGGER is a special type of stored procedure, which is ‘fired’ automatically when the data in a specified table is modified. It is invoked when an INSERT, UPDATE, or DELETE action is performed on a table.   Creating a TriggerSyntax: CREATE TRIGGER trigger_nameON { table | view } [ WITH ENCRYPTION ] {     Triggers