syntax error with update query when join with some table

ⅰ亾dé卋堺 提交于 2019-12-02 17:09:15

问题


Here is an API generated query - Not sure what is wrong.

UPDATE T123 
SET COL1 = 1, VER1 = VER1 + 1  
INNER JOIN  
    SELECT C1 
    FROM (SELECT T.NUM_FLD C1 FROM WAPTDT_123 T) TAB ON C1 = REQUEST_ID

gives me error

SQL command not properly ended

All columns are present in table, I believe something is wrong with the join and running this command on oracle.

EDIT

One more thing is, the

SELECT C1 
FROM (SELECT T.NUM_FLD C1 FROM WAPTDT_123 T) TAB

part of query is fixed as I am getting from some API.


回答1:


Oracle does not support join in the update syntax:

UPDATE T123
    SET COL1 = 1,
        VER1 = VER1 + 1
    WHERE EXISTS (SELECT 1 FROM WAPTDT_123 T WHERE T123.REQUEST_ID = T.NUM_FLD);

This is standard SQL and should work in any database.

Your query has other problems as well . . . the subquery is not in parentheses, the inner join has no first table.

EDIT:

You can write this query with that subquery:

UPDATE T123
    SET COL1 = 1,
        VER1 = VER1 + 1
    WHERE T123.REQUEST_ID IN (SELECT C1 FROM ( SELECT T.NUM_FLD C1 FROM WAPTDT_123 T) TAB );

I switched this to an IN, just because that is another option. You could still use EXISTS.



来源:https://stackoverflow.com/questions/26086625/syntax-error-with-update-query-when-join-with-some-table

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