mysql更新 多个表的字段
在MySQL中,如果你想要同时更新多个表中的字段,你可以使用一个UPDATE
语句和JOIN
来实现。以下是一个例子:
UPDATE table1 JOIN table2 ON table1.id = table2.id SET table1.info = 'new value 1', table2.info = 'new value 2' WHERE table1.id = 1;
在这个例子中,我们更新了table1
和table2
中匹配id
为1的记录的info
字段.