Posts by Daniel Pereira • 1 point
1 post
-
0
votes1
answer361
viewsQ: Trigger to fill table with data from another table
I want to fill a table with the data being placed in another. CREATE TRIGGER `trg_jogo`AFTER INSERT ON `tabela1` AS INSERT INTO `tabela2` SELECT * FROM `tabela1`; I cannot do the process to copy the…