Changes between Version 8 and Version 9 of AdvancedReports


Ignore:
Timestamp:
01/26/23 22:12:44 (20 months ago)
Author:
201060
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AdvancedReports

    v8 v9  
    123123left join question_is_part_of_quiz qipoq
    124124on q.questionid=qipoq.questionid
    125 left join attempt a on qipoq.quizid=a.quizid
     125left join attempt a
     126on qipoq.quizid=a.quizid
    126127where s.choiceid=c.choiceid and c.iscorrect
    127128and a.attemptdate between now() - interval '1 year' and now()
     
    167168}}}
    168169
    169 == Квизови рангирани според бројот на точно одговорени прашања
     170== Рангирани квизови според бројот на точно одговорени прашања во последниот месец
    170171
    171172
     
    186187left join selectedchoice s
    187188on s.choiceid = c.choiceid
     189left join attempt a
     190on q.quizid=a.quizid
    188191where s.choiceid=c.choiceid and c.iscorrect
     192and a.attemptdate between now() - interval '1 month' and now()
    189193group by 1
    190194order by counter