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

Elimina MySQL con Raggruppa per

Inseriscilo in una sottoquery:

delete from table 
where columnA in (
  select columnA
  from (
      select columnA
      from YourTable
      group by columnA
      having count(*) > 1
      ) t  
)