Can we have single trigger for multiple tables in MySQL -
Can I trigger a single for multiple tables in MySQL? After inserting any topic like Table 1 or Table 2, I have to do the same thing:
Create Trigger Triggers - 1_4_ Task 1 after INSERT on `Table_1` for each line. .... task1 END // Create triggers trigger-2_4_ Task 1 after INSERT for each row `table_2` ... The same task as task1 END // I have two above triggers like: after INSERT on `Table_1` or` table_2` for each line trigger trigger_bin_task1 O ... function 1 END // thanks
Can I have a trigger in MySQL for several tables?
But many triggers can apply equally.
Comments
Post a Comment