Posts by Eduardo Luis Miliorini • 19 points
1 post
-
1
votes4
answers1585
viewsA: How to make a "Generic Trigger" in SQL Server?
You can create the following Rigger. CREATE TRIGGER duplica BEFORE INSERT ON contatos FOR EACH ROW SET NEW.telefone2 = NEW.telefone;