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
{{ message }}
This repository has been archived by the owner on May 20, 2019. It is now read-only.
SELECT
problem_id,
course_id,
count(*) AS peergrades
FROM
controller_submission cs,
controller_grader cg
WHERE
cs.id = cg.submission_id
AND cg.grader_type = "PE"
GROUP BY
cs.course_id,
cs.problem_id;
How many submissions per problem?
SELECT
course_id,
problem_id,
count(*) AS submissions
FROM
controller_submission
GROUP BY
course_id,
problem_id;