gpt4 book ai didi

php - 如何计算 SQL 中每个值的表行数?

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

我是新来的,所以如果它没有固定的主题,请修复我。我有这张表:

id | uid | month | year
-----------------------
1 | 5 | 12 | 2018
2 | 5 | 12 | 2018
3 | 9 | 12 | 2018
4 | 3 | 01 | 2019

我想计算每个uid有多少次monthyear值等于 - month=12year=2018

例如我想得到这样的响应:

uid=5 - count = 2
uid=9 - count = 1

这怎么可能?

最佳答案

使用按 uid 分组:

select uid, count(*) as counter
from table
where month = 12 and year = 2018
group by uid

关于php - 如何计算 SQL 中每个值的表行数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53977788/

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