The export is not a small query, it would fetch the Quiz, Questions included in the quiz, Question answers marked by all the 287 users who marked the quiz, result of each marked answer correct or wrong.
You can simply get this data from Quiz - Stats area :
If you still need a query for Quiz results try this out :
SELECT p.post_title,u.display_name,m.meta_value FROM wp_posts as p LEFT JOIN wp_postmeta as m ON p.ID = m.post_id LEFT JOIN wp_users as u ON m.meta_key = u.ID WHERE p.post_type = 'quiz' AND p.ID = 1131 AND m.meta_key REGEXP '^[0-9]+$'
1131 is the quiz id for which you need the student and scores.