Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Wie lösche ich Datensätze in MySQL und behalte das letzte Datum bei?

Ich würde das UpdateDate mit einer korrelierten Unterabfrage vergleichen.

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

BEARBEITEN

Ein weiterer Refactor der gleichen Logik