ORA-01747: invalid user.table.column, table.column, or column specification

前端 未结 11 2449
旧巷少年郎
旧巷少年郎 2021-01-04 01:27

Get the above error when the execute immediate is called in a loop

Update CustomersPriceGroups set  1AO00=:disc  Where cuno=:cuno
    Parameters:   disc=66 c         


        
11条回答
  •  萌比男神i
    2021-01-04 02:22

    And I was writing query like. I had to remove [ and ]

    UPDATE SN.TableName 
    SET [EXPIRY_DATE] = systimestamp + INTERVAL '12' HOUR, 
    WHERE [USER_ID] ='12345'
    

    We recently moved from SQL Server to Oracle.

提交回复
热议问题