UPDATE table1, table2 SET table1.col1='value', table2.col1='value' WHERE table1.col3='567' AND table2.col6='567'
UPDATE table1, table2 SET table1.col1='value', table2.col1='value' WHERE table1.col3='567' AND table2.col6='567' This should work for ya.
HereThere is a reference in he MySQL manual -> http://dev.mysql.com/doc/refman/5.0/en/update.htmlthe MySQL manual There is an example for multiple tables.