Sqlserver
 sql >> डेटाबेस >  >> RDS >> Sqlserver

अद्यतन करें और एक तालिका को दूसरे से सम्मिलित करें

Merge table2 as target
using table1  as source
on
target.id=source.id
When matched 
Then
update 
set target.id=source.id,
    target.name=source.name
When not matched by Target Then
INSERT (id, name) VALUES (id, name);

मर्ज स्टेटमेंट के साथ कुछ समस्याएं हैं, इसलिए इसका उपयोग सावधानी ..

इसके अलावा, मैं नीचे की तरह दो अलग-अलग डीएमएल स्टेटमेंट के रूप में मर्ज का उपयोग करने की सलाह देता हूं ..

insert into table2
select * from table1 t1 where not exists (select 1 from table2 t2 where t2.id=t1.id)

update t2
set 
t2.id=t1.id,
t2.name=t1.name
from 
table1 t1
join
table2 t2
on t1.id=t2.id

कारण बताए जा रहे हैं पॉल व्हाइट यहां उनके विस्तृत उत्तर में ..



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. SQL सर्वर में किसी भिन्न डेटाबेस से OBJECT_NAME () कैसे प्राप्त करें

  2. SQL सर्वर में @@MAX_PRECISION क्या है?

  3. एसक्यूएल संचयी गणना

  4. समान दायरे (एसक्यूएल सर्वर) में अंतिम-सम्मिलित पहचान मान वापस करने के लिए SCOPE_IDENTITY() का उपयोग करें

  5. लिंक टू एंटिटीज:एनटीएक्स्ट फ़ील्ड पर ToLower () का उपयोग करना