Oracle Update Query using Join

喜夏-厌秋 提交于 2019-12-28 02:19:04

问题


I am trying to update the amount using Join but getting exception:

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;


SQL Error: ORA-00933: SQL command not properly ended 00933. 00000 -  "SQL
command not properly ended"

回答1:


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



回答2:


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



回答3:


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);  


来源:https://stackoverflow.com/questions/31933765/oracle-update-query-using-join

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!