is following sql valid ?
UPDATE suppliers, contacts
SET suppliers.status = 'Active',
contacts.note = 'Also Supplier'
WHERE suppliers.supplier_id = contacts.contact_id;
but oracle is not supporting. why?
How to update two tables in one statement in SQL Server 2005?