mysql update from 21 Dec 2011 in 数据库 on mysql - Hits()使用sqlserver可使用update 加 from来进行多表带条件更新,但是mysql中要实现多表带条件更新是不能使用from的,其语法为如下例:update table1 as t, table2 as s set t.c1 = 1 where t.id = s.id and t.`to` = '1' and s.`from` = '2'将列表放在update 之后即可。