Answers for "delete duplicate records in mysql based on two fields"

SQL
0

mysql remove duplicates

DELETE t1 FROM contacts t1
INNER JOIN contacts t2 
WHERE 
    t1.id < t2.id AND 
    t1.email = t2.email;Code language: SQL (Structured Query Language) (sql)
Posted by: Guest on February-11-2021

Code answers related to "delete duplicate records in mysql based on two fields"

Code answers related to "SQL"

Browse Popular Code Answers by Language