我正在尝试让用户依靠notification_template_id。 表示用户使用notification_template_id 56多次定位目标。
E.G
user_id notification_template_id count
229 56 3
117 13 2
我正在尝试的查询是:
SELECT
user_id,
notification_template_id,
count(notification_template_id) AS cnt
FROM
user_notifications
GROUP BY
user_id;
但它仅显示每个用户的通知总数。
答案 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;