sql >> Database teknologi >  >> RDS >> Sqlserver

Hvordan kan jeg tjekke for dubletter, før jeg indsætter i en tabel, når jeg indsætter ved at vælge

INSERT INTO table1 
SELECT t2.col1, 
       t2.col2 
FROM   table2 t2 
       LEFT JOIN table1 t1 
         ON t2.col1 = t1.col1 
            AND t2.col2 = t1.col2 
WHERE  t1.col1 IS NULL 

Alternativ ved hjælp af undtagen

INSERT INTO @table2 
SELECT col1, 
       col2 
FROM   table1 
EXCEPT 
SELECT t1.col1, 
       t1.col2 
FROM   table1 t1 
       INNER JOIN table2 t2 
         ON t1.col1 = t2.col1 
            AND t1.col2 = t2.col2 

Alternativ ved hjælp af Ikke eksisterer

INSERT INTO table2 
SELECT col1,col2 
FROM table1 t1
WHERE
NOT EXISTS( SELECT 1
    FROM table2 t2
    WHERE t1.col1 = t2.col1
          AND t1.col2 = t2.col2)


  1. mysql:sløjfe over tabeller og ændre tabel tilføje indeks

  2. MySQL ALTER TABLE på tabeller, der er for store til at duplikere

  3. MySQL - opret visning ved hjælp af underforespørgsel i FROM-klausul

  4. Referencefejl på node.js under inkluderingsfil