“Mysql usuwa starsze duplikaty” Kod odpowiedzi

MySQL Usuń duplikaty

DELETE c1 FROM tablename c1
INNER JOIN tablename c2 
WHERE
    c1.id > c2.id AND 
    c1.unique_field = c2.unique_field;
Matteoweb

Mysql usuwa starsze duplikaty

 delete test
   from test
  inner join (
     select max(id) as lastId, email
       from test
      group by email
     having count(*) > 1) duplic on duplic.email = test.email
  where test.id < duplic.lastId;
Powerful Penguin

Odpowiedzi podobne do “Mysql usuwa starsze duplikaty”

Pytania podobne do “Mysql usuwa starsze duplikaty”

Więcej pokrewnych odpowiedzi na “Mysql usuwa starsze duplikaty” w Sql

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu