我正在我的网站上举办比赛。每场比赛都可以有多个参赛作品。如果只有投票的 MAX 值有重复,我想检索。
表格如下:
contest_id entry_id votes
1 1 50
1 2 34
1 3 50
2 4 20
2 5 55
3 6 53
我只需要查询来告诉我比赛 1 有一个重复的 MAX 值而没有额外的信息。
我试过这个但没有奏效:
SELECT MAX(votes) from contest group by contest_id having count(votes) > 1