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_
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