Changes between Version 13 and Version 14 of AdvancedReports


Ignore:
Timestamp:
02/10/23 13:51:30 (17 months ago)
Author:
201060
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AdvancedReports

    v13 v14  
    7474join attempt a on q.quizid=a.quizid
    7575where a.attemptdate between now() - interval '6 months' and now()
    76 group by 1
     76group by 1, a.attemptdate
    7777order by count(a.attemptid)
    7878
     
    104104join quizTaker qt on at.userid  = qt.userid
    105105and at.attemptdate between now() - interval '3 months' and now()
     106group by at.attemptdate
    106107}}}
    107108
     
    128129where s.choiceid=c.choiceid and c.iscorrect
    129130and a.attemptdate between now() - interval '1 year' and now()
    130 group by 1
     131group by 1, a.attemptdate
    131132order by counter
    132133}}}
     
    165166on a.userid = q.userid
    166167where a.attemptdate between now() - interval '1 year' and now()
    167 group by 1
     168group by 1, a.attemptdate
    168169order by attempted_quizzes
    169170}}}
     
    192193where s.choiceid=c.choiceid and c.iscorrect
    193194and a.attemptdate between now() - interval '1 month' and now()
    194 group by 1
     195group by 1, a.attemptdate
    195196order by counter
    196197}}}
     
    208209where a.attemptdate between now() - interval '3 months' and now()
    209210order by res.points desc
     211group by a.attemptdate
    210212limit 5;
    211213}}}