【解决方案1】:
DELETE t1 
FROM table t1 
JOIN table t2 USING (lead) 
WHERE t1.id < t2.id

【讨论】: