Postgres after insert trigger
Dnn_contentpane
Nov 02, 2010 · postgres=# update test_def set a='Second'; NOTICE: INSERTED VALUE in Column a 1 UPDATE 1 When Triggers in PG9.0: PG9.0 has “When trigger” which allowed user to create trigger to execute procedure for a particular condition.
Jan 24, 2013 · A trigger is an exceptional sort of stored procedure which functions when we try to amend the data in a table like inserting, deleting or updating data. It is a database object, executed automatically and is bound to a table. Fundamentally, triggers are classified into two types mainly-