php 如何统计具有特定状态和特定user_id的通知?

djp7away  于 2023-01-29  发布在  PHP
关注(0)|答案(2)|浏览(91)

enter image description here如何统计具有特定状态和特定user_id的通知?我在通知表中有一些数据,根据user_id 2计算状态字段为3的通知的逻辑是什么?我想总共发出3条user_id 2中状态字段为3的通知

5n0oy7gb

5n0oy7gb1#

calculate notification whose status is field 3 based on user_id 2

根据您的要求,where条件是基于user_id 2的status字段3。
所以你可以这样做

SELECT COUNT(*) FROM tablename WHERE status = 3 AND user_id = 2

下次请拿出你的努力来。谢谢

vcirk6k6

vcirk6k62#

您正在按功能搜索组。
对于所有用户和状态:

SELECT COUNT(user_id), user_id, status FROM {Insert your table name} GROUP BY user_id, status ORDER BY user_id ASC;

相关问题