返回到文章
1
源
采纳
编辑于
八荒
mysql根据表b更新表a的数据
mysql
mysql
非常简单
UPDATE
t_content_additional a, t_content b
SET
a.click = b.click
WHERE
a.cid = b.id
预览