What is a trigger?
Posted by silpa on Mar 25 2007
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