SQL Server Multi-table connection update

Source: Internet
Author: User
Tags one table

One, MS SQL Server Multi-Table Association update

SQL Server provides the FROM clause of the update, which connects the table that will be updated to its data source. Although only one table can be updated, it is possible to reference data other than the table to be updated in an update expression by connecting the table that will be updated with its data source.
General form:

Update A SET field 1=b table field expression, fields 2=b table segment expression from B WHERE logical expression

For example:

UPDATE dbo. Table2
SET dbo. Table2.colb = dbo. Table2.colb + dbo. Table1.colb
FROM dbo. Table2
INNER JOIN dbo. Table1
On (dbo. Table2.cola = dbo. Table1.cola);


The actual update is performed on the table to be updated, not on the new result set formed by the FROM clause

SQL Server Multi-table connection update

Related Article

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.