Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.server -> Re: Oracle Update Syntax
>
> You miss a select, you should have something
> along the line of:
> update po_vendors
> set po_vendors.attribute3 =
> select to_char(contractorimport.contractorid)
> from contractorimport
> where po_vendors.num_1099 = contractorsimport.ssnnumber
>
> --
> Regards,
> Frank van Bortel
>
> Top-posting is one way to shut me up...
Not working...
1 update po_vendors
2 set po_vendors.attribute3 = (
3 select to_char(contractorimport.contractorid) 4 from contractorimport