Answers for "mysql select join table and remove duplicates"

SQL
4

mysql remove duplicates

DELETE c1 FROM tablename c1
INNER JOIN tablename c2 
WHERE
    c1.id > c2.id AND 
    c1.unique_field = c2.unique_field;
Posted by: Guest on June-18-2020

Code answers related to "mysql select join table and remove duplicates"

Code answers related to "SQL"

Browse Popular Code Answers by Language