What about quering the >50 (monthly) leaderboard members? That’s better than selecting overall cheers because it push the permanent contributions.
That badge should enable an specific event in our instance ![]()
What about quering the >50 (monthly) leaderboard members? That’s better than selecting overall cheers because it push the permanent contributions.
That badge should enable an specific event in our instance ![]()
Perhaps something like this would do the trick?
SELECT user_id, CURRENT_TIMESTAMP AS granted_at, SUM(score) AS score
FROM gamification_scores
WHERE date >= CURRENT_DATE - INTERVAL '1 MONTH'
AND user_id > 0
GROUP BY 1
ORDER BY score DESC
LIMIT 50
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.