alrightydooda
Programmer
Hi,
I have 2 tables and i need to update data in the first table with data from the second table. The following statement will not work but it will give you an idea of what i am trying to do.
UPDATE table1
SET table1.code_id = table2.system_id
WHERE table1.code_id = table2.code_id
I am using Oracle9i.
I have 2 tables and i need to update data in the first table with data from the second table. The following statement will not work but it will give you an idea of what i am trying to do.
UPDATE table1
SET table1.code_id = table2.system_id
WHERE table1.code_id = table2.code_id
I am using Oracle9i.