Possible Duplicate:
How to UPDATE one column using another column in another table? SQL Error: ORA-00933: SQL command not properly ended
I have tried everything I can think of but couldn't solve this SQL error:
SQL Error: ORA-00933: SQL command not properly ended
This is Oracle SQL.
Have to say, Oracle SQL seems a lot more awkward and hard to use than the open-source version MySQL.... Many thanks.
UPDATE SALES_DATA_FAMILY_2007 A
SET A.POG_ID=B.POG_ID
FROM POG_HIERARCHY B
WHERE A.FAMILY_ID=B.FAMILY
;