mysql - Why don't oracle support Updating multiple table in a single query? -
is following sql valid ?
update suppliers, contacts set suppliers.status = 'active', contacts.note = 'also supplier' suppliers.supplier_id = contacts.contact_id;
but oracle not supporting. why?
no, sql supplied not valid.
as others have stated in comments, link supplied question if can update multiple tables in single statement in sql server.
answer question no
Comments
Post a Comment