Diese Abfrage gibt alle doppelten IDs mit einer durch Kommas getrennten Liste von IDs zurück, die denselben Namen haben:
select
t1.id,
group_concat(t2.id)
from
tablename t1 inner join tablename t2
on t1.id<>t2.id and t1.name=t2.name
group by
t1.id
und diese Abfrage aktualisiert die Beschreibung:
update tablename inner join (
select
t1.id,
group_concat(t2.id) dup
from
tablename t1 inner join tablename t2
on t1.id<>t2.id and t1.name=t2.name
group by
t1.id
) s on tablename.id = s.id
set
description = concat('duplicate id in (', s.dup, ')')
siehe bitte funktionierende Geige hier .