Usage of SQL Server merge

Source: Internet
Author: User
CREATE TABLE ttable    (      ID INT,      F1 varchar (ten),      F2 varchar (),      f3 varchar)    Goinsert  Into Ttable   Select one, one,  14INSERT into  ttable Select,  25,26gocreate TABLE ttable2
   (      ID INT,      f5 varchar (ten),      f6 varchar)    gocreate PROC mergetestas    BEGIN        MERGE Into TTable2 T1        USING (SELECT    ID, F3, F2  from  ttable  ) T2 on  (t1.id = t2.id) when        MAT  Ched then  UPDATE SET t1.f5 = t2.f2, T1.f6 = t2.f3 when not        matched then            INSERT (ID, F5, f6)            VALUES ( T2.id, T2.F2, t2.f3);    Endgo

  

Usage of SQL Server merge

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.