Hi all,
Is it possible to create a single trigger to fire, upon update on multiple columns in a table, instead of a single column?
For example, to fire a trigger upon update on a single column in table A, i have the following statements:
create trigger trigger1
after update of column1 on tableA
...
....
how abt if there are a few columns in tableA which needs to fire the same trigger, if there is an update to those columns? Is it possible to put into a single trigger as follow?
create trigger trigger1
after update of column1, column2 column3 on tableA
...
....
Really appreciate for any replies. Thanks.