gpt4 book ai didi

MySQL 统计不同查询

转载 作者:行者123 更新时间:2023-11-29 14:47:59 25 4
gpt4 key购买 nike

我有一个表,用于保存帖子评论类型、金额等。

PostExtras
- id
- amount
- post_id (foreign key)
- comment_type (foreign key)
- ...

comment_type
- id
- name

我想选择具有重复评论类型的帖子。

示例:

- id     - amount    - post_id    - comment_type
1 20 23 1
2 45 23 2
3 80 28 1
4 78 28 2
5 56 23 1

第 1 行和第 5 行实际上是相同的。

最佳答案

如果我理解正确,请使用 COUNT, GROUP BY and HAVING

SELECT *, COUNT(*) AS itemcount FROM PostExtras 
GROUP BY post_id, comment_type
HAVING itemcount >= 2

关于MySQL 统计不同查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6467254/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com