I know that you can do join statements on SELECT,
but can you also do joins using UPDATE, INSERT, and DELETE statements so that rows from multiple tables all get deleted/updated/inserted if they are linked with each other and they satisfy the WHERE statements…
also will this work on both LEFT JOINs, RIGHT JOINS, JOINS, and INNER JOINs?
You can do this using a trigger though
The trigger will fire on each update and update table2 using some of the new data in table1.
There are triggers
BEFOREandAFTERan action, which can beUPDATE,INSERTorDELETESee: http://dev.mysql.com/doc/refman/5.1/en/create-trigger.html
and: http://www.databasedesign-resource.com/mysql-triggers.html