从表中选择重复的条目并从重复的行中获取所有字段

发布于 2024-12-05 15:37:28 字数 657 浏览 0 评论 0原文

我有一张这样的桌子。

id  day1    day2    day3
1   411     523     223
2   413     554     245
3   417     511     209
4   420     515     232
5   422     522     212
6   483     567     212
7   456     512     256
8   433     578     209
9   438     532     234
10  418     555     223
11  460     510     263
12  453     509     245
13  441     524     233
14  430     543     261
15  456     582     222
16  444     524     241
17  478     511     211
18  421     583     222

我想选择第 2 天具有重复值的所有 ID。 我正在做

select day2,count(*) from resultater group by day having count(*)>1;

是否可以列出组内的所有 ID?

I have a table like this.

id  day1    day2    day3
1   411     523     223
2   413     554     245
3   417     511     209
4   420     515     232
5   422     522     212
6   483     567     212
7   456     512     256
8   433     578     209
9   438     532     234
10  418     555     223
11  460     510     263
12  453     509     245
13  441     524     233
14  430     543     261
15  456     582     222
16  444     524     241
17  478     511     211
18  421     583     222

I want to select all the IDs that have duplicate values in day2.
I'm doing

select day2,count(*) from resultater group by day having count(*)>1;

Is it possible to list all the IDs within the groups?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

残疾 2024-12-12 15:37:29
select day2,count(*), group_concat(id)
    from resultater
    group by day
    having count(*)>1;

应该可以解决问题。

select day2,count(*), group_concat(id)
    from resultater
    group by day
    having count(*)>1;

should do the trick.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文