我有一组结果 - SELECT id FROM recruit_index WHERE YEAR NOT LIKE '2011'
我需要使用mysql更新基于上述每个id的另一个表列。
有人能指出我正确的方向吗?
提前致谢
麦克
答案 0 :(得分:1)
使用:
UPDATE recruit_index, other_table set other_table.column={new value here}
WHERE recruit_index.id = other_table.id and recruit_index.year not like '2011';