Mysql
 sql >> Database >  >> RDS >> Mysql

Come posso eliminare i record in MySQL e mantenere l'ultima data

Verificherei UpdateDate rispetto a una sottoquery correlata.

CREATE TEMPORARY TABLE
  latestRecord (
    Email        VARCHAR(128),
    updateDate   DATETIME
) 
INSERT INTO 
  latestRecord
SELECT
  Email,
  MAX(updateDate) AS updateDate
FROM
  table_1
GROUP BY
  Emal

DELETE 
  table_1
FROM
  table_1
INNER JOIN
  latestRecord
    ON  latestRecord.Email      = table_1.Email
    AND latestRecord.updateDate < table_1.updateDate

MODIFICA

Un altro refactor della stessa logica