Analyzing the difference between MySQL and Oracle update

Source: Internet
Author: User
This article is a detailed analysis of the difference between MySQL and Oracle update, the need for friends under the reference

Update: Tanku Updates Needless to say, the two are the same, mainly talking about the update of multiple tables

Copy Code code as follows:


oracle> Oracle's multiple-table update requirements are more stringent, so sometimes it's not very good to write and we can try Oracle Cursors


Update (


Select T.charger_id_ new_charger_id_


from T_cus_year_status t


left join T_customer_infos cus on cus.id_ = T.cus_id_


where ...


) n Set n.new_charger_id_ = 6;

Copy Code code as follows:


mysql>


Update T_cus_year_status T


Left join T_customer_infos cus on cus.id_ = T.cus_id_


Set t.charger_id_ = 6


where ...;

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.