gpt4 book ai didi

MySQL 计数出现次数

转载 作者:行者123 更新时间:2023-11-29 02:24:50 25 4
gpt4 key购买 nike

我有这 2 个表:

Category:
cat_id|cat_type
1 | a
2 | b
3 | c
4 | d

Meta:
met_id|met_name|user_id|met_type
10 | bla | 2 | 1
11 | blabla | 4 | 2
12 | foo | 1 | 3
13 | blafoo | 3 | 4
14 | foofoo | 5 | 4

我怎样才能返回这样的东西?

cat_type|occurences
a | 1
b | 1
c | 1
d | 2

met_type 是来自 Category 的外键。

最佳答案

SELECT c.cat_type
, COUNT(m.met_type) AS occurrences
FROM categoty c LEFT JOIN meta m ON c.cat_id = m.met_type
GROUP BY c.cat_type

关于MySQL 计数出现次数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24298788/

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