Answers for "select only unique values from and to current table"

0

select only unique values from and to 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 unique values from and to current table"

Browse Popular Code Answers by Language