Answers for "mysql select without duplicate rows"

SQL
1

mysql delete duplicate rows but keep one

DELETE c1 FROM contacts c1
INNER JOIN contacts c2 
WHERE
    c1.id > c2.id AND 
    c1.email = c2.email;
Posted by: Guest on February-04-2021
0

duplicate row mysql

# Duplicate rows or row
INSERT INTO table (col1, col2, col3)
SELECT col1, col2, col3 FROM table
WHERE something...;
Posted by: Guest on May-20-2021

Code answers related to "mysql select without duplicate rows"

Code answers related to "SQL"

Browse Popular Code Answers by Language