I get the SQL error ORA-00933 for the statement below. This parses in postgres, but not in oracle... How should this be formatted for oracle?
Thanks in advance!
UPDATE comments
SET parent_type='report'
FROM reports
WHERE comments.parent_id=reports.id;
FROMfor theUPDATEqueries.