What is a trigger?

Posted by admin on Dec 05 2006

Trigger is a set of SQL statements that automatically fires off when some specific operation occurs

Trigger consists of an event(insert,delete,update on some table) and an action(the related procedure)

Leave a Comment