SQL Error: ORA-00933: SQL command not properly ended

后端 未结 5 2154
鱼传尺愫
鱼传尺愫 2020-11-29 09:03

I am trying to update a record in oracle SQL developer by using Joins. Following is my query-

UPDATE system_info set field_value = \'NewValue\' 
FROM system_         


        
5条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-11-29 09:42

    Your query should look like

    UPDATE table_name
    SET column1=value, column2=value2,...
    WHERE some_column=some_value
    

    You can check the below question for help

    • SQL update query using joins?

提交回复
热议问题