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?

how update 2 tables in 1 statement in sql server 2005?

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

Popular posts from this blog

commonjs - How to write a typescript definition file for a node module that exports a function? -

openid - Okta: Failed to get authorization code through API call -

thorough guide for profiling racket code -