[sql]delete from comments c1 where exists (
select * from comments c2 where c2.id<>c1.id and c2.name=c1.name and c2.email=c1.email and c2.comment=c1.comment)
and c1.id <> (select min(c2.id) from comments c2 where c2.name=c1.name and c2.email=c1.email and c2.comment=c1.comment)[/sql]