First page Back Continue Last page Image

The Syntax for a Trigger Statement

CREATE TRIGGER trigger_name

{BEFORE|AFTER}

{INSERT|UPDATE|DELETE} ON table_name

FOR EACH ROW

trigger_body

Will this program be run before or after the specified event

Identification of the Event to be triggered

What the trigger will do