Changes between Version 8 and Version 9 of AdvancedReports
- Timestamp:
- 01/26/23 22:12:44 (22 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AdvancedReports
v8 v9 123 123 left join question_is_part_of_quiz qipoq 124 124 on q.questionid=qipoq.questionid 125 left join attempt a on qipoq.quizid=a.quizid 125 left join attempt a 126 on qipoq.quizid=a.quizid 126 127 where s.choiceid=c.choiceid and c.iscorrect 127 128 and a.attemptdate between now() - interval '1 year' and now() … … 167 168 }}} 168 169 169 == Квизови рангирани според бројот на точно одговорени прашања170 == Рангирани квизови според бројот на точно одговорени прашања во последниот месец 170 171 171 172 … … 186 187 left join selectedchoice s 187 188 on s.choiceid = c.choiceid 189 left join attempt a 190 on q.quizid=a.quizid 188 191 where s.choiceid=c.choiceid and c.iscorrect 192 and a.attemptdate between now() - interval '1 month' and now() 189 193 group by 1 190 194 order by counter