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
  • 539
  • 6
  • 18

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,814
  • 2
  • 17
  • 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
  • 17,619
  • 9
  • 53
  • 81