0

我有 2 张桌子。'report' 和 'panel_calculation' 是表格。

report contains:

r_zone   r_address    r_status
=======+==========+============
1          8             0
2          9             0
2          6             0
7          9             0
3          2             0


panel_calculation contains:

p_cal_zone  p_cal_address  p_status
===========+==============+============
7                9             1
3                2             1

我需要根据 'panel_calculation' 表更新 'report' 表中的 r_status 列。

所以最终的结果是这样的:

Final 'report' should be like this:

r_zone   r_address    r_status
=======+==========+============
1          8             0
2          9             0
2          6             0
7          9             1
3          2             1

我需要你的建议。

4

4 回答 4

1

即使更新表格,您仍然可以加入两个表格。

UPDATE  report s
        INNER JOIN panel_calculation b
            ON s.r_zone = b.p_cal_zone
SET     s.r_status = b.p_status
于 2012-11-25T07:17:13.743 回答
1

尝试这个:

UPDATE report r
INNER JOIN panel_calculation p ON r.r_zone = p.p_cal_zone 
SET r.r_status = p.p_status;

SQL 小提琴演示

于 2012-11-25T07:17:18.560 回答
0

您可以像这样使用 LEFT JOIN:

UPDATE report t1
LEFT JOIN panel_calculation t2
    ON t1.r_zone=t2.p_cal_zone
    AND t1.r_address=t2.p_cal_address
SET t1.r_status=t2.p_status
于 2012-11-25T07:20:22.963 回答
0

作为您的问题的解决方案,请尝试执行以下 sql 查询

  update report r set r_status=(select p_status from panel_calculation where p_cal_zone=r.r_zone limit 1 )
于 2012-11-25T07:34:30.110 回答