Answers for "how to delete duplicate rows except for one in mysql"

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
0

delete all duplicate rows keep the latest except for one in mysql

DELETE 
FROM
  `tbl_job_title` 
WHERE id NOT IN 
  (SELECT 
    * 
  FROM
    (SELECT 
      MAX(id) 
    FROM
      `tbl_job_title` 
    GROUP BY NAME) tbl)
Posted by: Guest on April-26-2021

Code answers related to "how to delete duplicate rows except for one in mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language