Oracle Update Query using Join

天大地大妈咪最大 提交于 2019-11-27 05:42:08

Try to use merge

merge into table1 tab1 
using
(
SELECT tab3.name, tab3."add", SUM(tab2.amount) AS total
  FROM table2 tab2,
    table3 tab3 ,
    table4 tab4
  WHERE tab2.id        = tab3.id
  AND tab3.id            = tab4.id
  AND tab4.indicator             ='Y'
  GROUP BY tab3.name,
    tab3."add"
)t1
on(tab1.id      = t1.id)
when matched then 
update set tab1.total_adjusted_cost = tab1.total_adjusted_cost + t1.total

group is a keyword in sql. You have to escape it.

 UPDATE tab1 SET tab1.total_adjusted_cost = tab1.total_adjusted_cost + t1.total
FROM table1 tab1, 
  (SELECT tab3.name, tab3."add", SUM(tab2.amount) AS total
  FROM table2 tab2,
    table3 tab3 ,
    table4 tab4
  WHERE tab2.id        = tab3.id
  AND tab3.id            = tab4.id
  AND tab4.indicator             ='Y'
  GROUP BY tab3.name,
    tab3."add"
) t1
WHERE tab1.id      = t1.id
Arun Palanisamy

I think you have to use select keyword also. And follow the ANSI standard.

UPDATE tab1 
    SET tab1.total_adjusted_cost = (select tab1.total_adjusted_cost + t1.total
                                   FROM table1 tab1, 
                                  (SELECT tab3.name, tab3."add", SUM(tab2.amount) AS total
                                  FROM table2 tab2 JOIN  table3 tab3 
                                                    ON tab2.id   = tab3.id
                                                   JOIN  table4 tab4 
                                                    ON  tab3.id  = tab4.id
                                   WHERE tab4.indicator ='Y'
                                   GROUP BY tab3.name,tab3."add") t1
    WHERE tab1.id = t1.id);  
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!