I want to bulk update some rows in same table. I have a table, let's say TABLEA, having columns Id and OriginalID. I want to write a query with a combination of inner joins with some other tables:
Update TABLEA
SET OriginalID = Id
FROM TABLEA A
INNER JOIN TableB B ON <join condition>
INNER JOIN TableC C ON <join condition>
WHERE c.SomeCol = <value>
This works for SQL Server 2005 and for Oracle, it gives error
SQL Error: ORA-00933: SQL command not properly ended.