嗨我需要帮助这个判断MySQL
UPDATE
table1
SET
table1.campo1= '1'
FROM
table1
INNER JOIN
tabala2 ON tabale1.campo2 = table2.campo1
WHERE
table1.campo3 = table2.campo2
答案 0 :(得分:0)
更新不要先使用..表和连接。然后是设置并持续where子句
UPDATE table1
INNER JOIN tabala2 ON tabale1.campo2 = table2.campo1
SET table1.campo1= '1'
WHERE table1.campo3 = table2.campo2