Posts by João Cristo • 11 points
1 post
-
-1
votes1
answer36
viewsQ: How can I run a Rigger that automatically updates a table when an attribute is updated?
Create OR Replace TRIGGER filme_log before Update OF custo On filme Referencing New As New Old As Old For Each Row Begin Insert into filme_log Values(:new.nome_original, :old.custo, :new.custo,…