Answers for "select distinct all from table"

SQL
2

select distinct

SELECT DISTINCT ma_colonne
FROM nom_du_tableau
Posted by: Guest on March-03-2020
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 distinct all from table"

Code answers related to "SQL"

Browse Popular Code Answers by Language