0

Is it possible in MySQL to create some kind of rule for a table that when I insert a new row into that table, that it updates a column in a separate table?

Thank you!

user2827048
  • 529
  • 5
  • 17

2 Answers2

1

Yes it is possible. You can use trigger.You can create trigger insert on table and updated value to second table.

More details for trigger refer this link

https://dev.mysql.com/doc/refman/5.0/en/trigger-syntax.html

Mukesh Kalgude
  • 4,742
  • 2
  • 16
  • 32
0

You need to use AFTER INSERT Trigger for the table in which new rows being inserted.

You can check the after insert trigger here:Link

Aman Aggarwal
  • 16,184
  • 9
  • 53
  • 77