Answers for "select distinct on one column"

SQL
6

query DISTINCT

SELECT DISTINCT Column_name FROM table_name;
Posted by: Guest on April-14-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 on one column"

Code answers related to "SQL"

Browse Popular Code Answers by Language