gpt4 book ai didi

mysql - 将大量数据分组在一起并创建一个动态 amt 列

转载 作者:行者123 更新时间:2023-11-29 00:53:55 25 4
gpt4 key购买 nike

我有一个像这样的 mysql 数据库:

id - join_id - bool
1 - 32 - 1
2 - 32 - 0
3 - 32 - 1
4 - 32 - 1

我想查询这个:

join_id - bool (- amount)
32 - 1 - 3 (aka there are 3 instances where the join_id and bool are 32 and 1);
32 - 0 - 1 (aka there is 1 instances where the join_id and bool are 32 and 0);

任何关键词或名称都会很有帮助。

最佳答案

我认为这就是您正在寻找的:

SELECT join_id, bool, COUNT(id) AS amount FROM mytable GROUP BY join_id,bool

关于mysql - 将大量数据分组在一起并创建一个动态 amt 列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7045843/

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