Trigger means procedural code that is automatically executed in response to certain events on a particular table or view in a database. Create trigger requires the trigger privilege for the table associated with the trigger.
TRIGGER syntax:
CREATE TRIGGER name
[BEFORE | AFTER] [INSERT | UPDATE | DELETE]
Read More..




