さて、あなたはあなたの質問に答えるようなものです。 max(id)
が必要なようです :
SELECT email, COUNT(email) AS occurences, max(id)
FROM wineries
GROUP BY email
HAVING (COUNT(email) > 1);
ステートメントを使用して他を削除できます。 join
で削除 最初にテーブル名をリストしてからfrom
を指定する必要があるトリッキーな構文があります 結合のある句:
delete wineries
from wineries join
(select email, max(id) as maxid
from wineries
group by email
having count(*) > 1
) we
on we.email = wineries.email and
wineries.id < we.maxid;
またはこれをexists
として記述します 条項:
delete from wineries
where exists (select 1
from (select email, max(id) as maxid
from wineries
group by email
) we
where we.email = wineries.email and wineries.id < we.maxid
)