Skip to content
Advertisement

MySQL after update trigger with number of affected rows condition

In MySQL, I want to create a trigger with AFTER UPDATE triggering event for my user table.

In next, I have a table named user_log which is use to store the modifications that occurred on the parent table user after any update commands.

So, data in user_log table need be as follows:

As you can see from the data in the table above, it will update several columns at once. So I created my triger as follows, and its working for me.

My problem is, I have a lot more columns in the user table. Like I said, all columns or several of them are updated at once.

In that case I have to add a large amount of INSERT query to my trigger. So here I would like to know if there is another suitable way to do this.

I also tried it in this way. But its working only for one column.

Thank you.

Advertisement

Answer

Pattern:

Also you may use ROW() constructor instead of SELECT .. UNION ALL.

https://dbfiddle.uk/?rdbms=mysql_5.6&fiddle=c63b122abedf9481d72129bee0d2d87d

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement