根据notifications_sent mysql的出现查找用户

时间:2016-07-18 06:02:37

标签: mysql sql

我正在尝试让用户依靠notification_template_id。 表示用户使用notification_template_id 56多次定位目标。

E.G

user_id   notification_template_id    count
229          56                         3
117          13                         2

enter image description here

我正在尝试的查询是:

SELECT
    user_id,
    notification_template_id,
    count(notification_template_id) AS cnt
FROM
    user_notifications
GROUP BY
    user_id;

但它仅显示每个用户的通知总数。

1 个答案:

答案 0 :(得分:1)

sql是:

SELECT
    user_id,
    notification_template_id,
    count(notification_template_id) AS count
FROM
    user_notifications
GROUP BY
    user_id,
    notification_template_id;