Answers for "select only distinct values from another table and excluding from current table"

0

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

Browse Popular Code Answers by Language