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!

3

2 Answers 2

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

Sign up to request clarification or add additional context in comments.

Comments

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

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.