Answers for "sql select all without duplicate id"

SQL
1

sql exclude duplicates and find even id

SELECT DISTINCT city FROM tablename WHERE id % 2 = 0
Posted by: Guest on February-26-2021
0

how to query without duplicate rows in sql

SELECT DISTINCT col1,col2... FROM table_name where Condition;
Posted by: Guest on October-02-2020

Code answers related to "sql select all without duplicate id"

Code answers related to "SQL"

Browse Popular Code Answers by Language