Answers for "select only distinct values from another table"

0

select only distinct values from 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 from another table"

Browse Popular Code Answers by Language