View which quizzes a question is in?

Re: View which quizzes a question is in?

by Tim Hunt -
Number of replies: 0
Picture of Core developers Picture of Documentation writers Picture of Particularly helpful Moodlers Picture of Peer reviewers Picture of Plugin developers
This is not currently implemented.

If you go directly to the database (e.g. with phpMyAdmin) it is just something like

SELECT
q.name
FROM
mdl_quiz q
JOIN mdl_quiz_question_instances qqi ON qqi.quiz = q.id
WHERE
qqi.question = {questionid}


Obviously you need to put in the question id you are interested in.