Changes between Version 7 and Version 8 of AdvancedReports
- Timestamp:
- 01/26/23 22:05:52 (22 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AdvancedReports
v7 v8 64 64 65 65 66 == Најиграни квизови 66 == Најиграни квизови во последните 6 месеци 67 67 68 68 … … 72 72 from quiz q 73 73 join attempt a on q.quizid=a.quizid 74 where a.attemptdate between now() - interval ' 2 years' and now()74 where a.attemptdate between now() - interval '6 months' and now() 75 75 group by 1 76 76 order by count(a.attemptid) … … 106 106 107 107 108 == Прашања рангирани според бројот на точни одговори 108 == Прашања рангирани според бројот на точни одговори во последната година 109 109 110 110 … … 121 121 left join selectedchoice s 122 122 on s.choiceid = c.choiceid 123 left join question_is_part_of_quiz qipoq 124 on q.questionid=qipoq.questionid 125 left join attempt a on qipoq.quizid=a.quizid 123 126 where s.choiceid=c.choiceid and c.iscorrect 127 and a.attemptdate between now() - interval '1 year' and now() 124 128 group by 1 125 129 order by counter