Advertisement
Guest User

Untitled

a guest
Oct 12th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.75 KB | None | 0 0
  1. SELECT
  2.     aqr.uid, aqr.type, aqr.District, aqr.Student, aqr.AssessmentQuestion, aqr.AssessmentForm, aqr.SchoolYear, aqr.value, aqr.User, aqr.dateTime
  3. FROM AssessmentQuestionResponse aqr
  4. JOIN AssessmentQuestion aq ON aq.uid = aqr.AssessmentQuestion
  5. JOIN Assessment a ON a.uid = aq.Assessment AND a.type = 14 -- type easyCBM
  6. ORDER BY aqr.uid;
  7.  
  8.  
  9. SELECT
  10.     ampr.uid, ampr.type, ampr.District, ampr.Student, ampr.AssessmentQuestion, ampr.AssessmentForm, ampr.SchoolYear, ampr.month, ampr.week, ampr.value, ampr.phasenote, ampr.phaseline, ampr.User, ampr.dateTime
  11. FROM AssessmentMeasureProgressResponse ampr
  12. JOIN AssessmentQuestion aq ON aq.uid = ampr.AssessmentQuestion
  13. JOIN Assessment a ON a.uid = aq.Assessment AND a.type = 14 -- type easyCBM
  14. ORDER BY ampr.uid;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement