Use update inner join and delete inner join (zt) in SQL)

Source: Internet
Author: User
Tags sql using

This article is reproduced in SQL using update inner join and delete inner join.

Because the Update Connection statement is required when processing data in the project, the update inner join syntax is used. Here we repost the statement for future search. Thanks to the original author.

The update XXX set XXX Where statement is well known. Only then can we find that update and delete support the inner join update method, which is amazing. Sample Code of the Sharing Section:

 
 
12345 update tb_User set pass=''from tb_User usr inner join tb_Address addr on usr.nAddressFK = addr.nAddressID where usr.id=123

The update format is

Update T1 set t1.name = 'liu'From T1Inner join T2 on t1.id = t2.tid

The delete statement is similar

Delete from T1From T1Inner join T2 on t1.id = t2.tid

Note:Blue.

 
 
12345 update tb_User set pass=''from tb_User usr inner join tb_Address addr on usr.nAddressFK = addr.nAddressID where usr.id=123

The update format is

Update T1 set t1.name = 'liu'From T1Inner join T2 on t1.id = t2.tid

The delete statement is similar

Delete from T1From T1Inner join T2 on t1.id = t2.tid

Note:Blue.

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.