Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.0k views
in Technique[技术] by (71.8m points)

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'
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?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

No, the sql supplied is NOT valid.

As others have stated in the comments, the link you supplied is a question about if you can update multiple tables in a single statement in SQL Server.
The answer to that question is also No


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...