apn
apn

Reputation: 31

Can we call a trigger function in a stored procedure

Can we call a trigger function in a stored procedure.

Upvotes: 3

Views: 4297

Answers (1)

Neil Knight
Neil Knight

Reputation: 48537

A trigger is automatically executed. So, dependant on what your Stored Procedure is doing, it will get called.

http://www.postgresql.org/docs/8.1/interactive/triggers.html

Upvotes: 2

Related Questions