| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
Home -> Community -> Usenet -> comp.databases.oracle -> Re: SQL Update with a Join Syntax
UPDATE NameInfo
SET NameInfo.flag = 'OK'
WHERE NameInfo.lastname = 'Smith'
AND EXISTS
(SELECT *
FROM AddressInfo AS A1
WHERE A1.civic_id = NameInfo.civic_id
AND A1.town = 'Moncton');
Read the other posting about the proper syntax for an UPDATE. Received on Sat Aug 07 2004 - 18:39:41 CDT
![]() |
![]() |