Update Query
Using Oracle 9i database 9.2.0.5
Want to update a single column in all rows of a table with the value from another table.
Below is what I tried but it returns ORA-01427 single-row subquery returns more than one row.
How is this done?
UPDATE CTC_SAR_OWNER.RECEIPT_LOG a SET SHPMNT_ID = (SELECT SHPMNT_iD FROM CTC_SERVICE_OWNER.SERVICE_LOG b WHERE a.RECPT_ID = b.RECPT_ID)0