You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A precanned top-n report for multi-challenges would also be useful (with parameters), eg:
SELECT
l.row_num,
p.name,
p.email,
c.challenge,
r.challenge_round,
r.challenge_id,
r.id
FROM
challenge_rounds r,
challenges c,
leaderboards l,
participants p
WHERE c.id = r.challenge_id
AND r.challenge_id IN (31,28,40,39)
AND r.id IN (47,55,57,56)
AND l.participant_id = p.id
AND l.challenge_round_id = r.id
AND l.challenge_id = r.challenge_id
ORDER BY 4,1
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: