I've been googling for the last hour, and found some things that I thought would work, but have not...
I have table "revisions", and table "inventory".
Both have a column "revision".
I want to update revisions.revision column with inventory.revision, where
revision.site = inventory.site AND revision.item_no = inventory.item_no
what i've tried and hasn't worked...
UPDATE revisions
SET revisions.revision = i.revision
FROM revisions, inventory i
WHERE revisions.site = inventory.site and revisions.item_no = inventory.item_no
oracle gives error, sql not properly ended
thanks folks!