我正在尝试查询以找出有多少人在状态 3 中进行了活动。我假设我需要一个 COUNT 或 SUM,但是自从我以前这样做以来已经很长时间了,而且我已经尝试了很多搜索,但我仍然感到困惑。假设我有以下内容。
活动表:
activity_id status
1 3
2 3
3 1
Person_activity 表:
person_id activity_id
1 1
1 2
2 2
2 3
3 3
我希望查询输出:
person_id no_of_status_3
1 2
2 1
3 0
任何建议将不胜感激。提前致谢。