Answers for "select only distinct values another table"

0

select only distinct values another table

INSERT INTO Table2(Id) SELECT DISTINCT Id FROM Table1 WHERE Id NOT IN(SELECT Id FROM Table2);
Posted by: Guest on May-01-2021

Code answers related to "select only distinct values another table"

Browse Popular Code Answers by Language