Hi Folks,
this time my question is easy for professionals (i hope so).
I want to update a field of a table. In SQL-Server, i would have done as following:
UPDATE taskdata t SET t.start_plan = c.start_plan
FROM view_test c
WHERE t.caseid = c.callid
This Command does the following: When t.caseid and c.callid have the same value, the value of t.start_plan is updated by c.start_plan.
Please help me, what is the right Syntax for this in Oracle.