Last active
July 29, 2016 13:46
-
-
Save bacalj/6fdfa74f6b99b89faa8b9eaabf2319d6 to your computer and use it in GitHub Desktop.
Moodle courses that have used inline PDF annotation feedback -thanks, mackensen
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT DISTINCT name as "Assignment Name", course as "Course ID", fullname as "course title", "Standard" as "Annotation" | |
FROM prefix_assignfeedback_editpdf_annot ant | |
INNER JOIN prefix_assign_grades grd ON ant.gradeid = grd.id | |
INNER JOIN prefix_assign assign ON grd.assignment = assign.id | |
INNER JOIN prefix_course c ON assign.course = c.id | |
UNION | |
SELECT DISTINCT name as "Assignment Name", course as "Course ID", fullname as "course title", "Comment" as "Annotation" | |
FROM prefix_assignfeedback_editpdf_cmnt cmnt | |
INNER JOIN prefix_assign_grades grd ON cmnt.gradeid = grd.id | |
INNER JOIN prefix_assign assign ON grd.assignment = assign.id | |
INNER JOIN prefix_course c ON assign.course = c.id |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment