Changes between Version 13 and Version 14 of AdvancedReports
- Timestamp:
- 02/10/23 13:51:30 (22 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AdvancedReports
v13 v14 74 74 join attempt a on q.quizid=a.quizid 75 75 where a.attemptdate between now() - interval '6 months' and now() 76 group by 1 76 group by 1, a.attemptdate 77 77 order by count(a.attemptid) 78 78 … … 104 104 join quizTaker qt on at.userid = qt.userid 105 105 and at.attemptdate between now() - interval '3 months' and now() 106 group by at.attemptdate 106 107 }}} 107 108 … … 128 129 where s.choiceid=c.choiceid and c.iscorrect 129 130 and a.attemptdate between now() - interval '1 year' and now() 130 group by 1 131 group by 1, a.attemptdate 131 132 order by counter 132 133 }}} … … 165 166 on a.userid = q.userid 166 167 where a.attemptdate between now() - interval '1 year' and now() 167 group by 1 168 group by 1, a.attemptdate 168 169 order by attempted_quizzes 169 170 }}} … … 192 193 where s.choiceid=c.choiceid and c.iscorrect 193 194 and a.attemptdate between now() - interval '1 month' and now() 194 group by 1 195 group by 1, a.attemptdate 195 196 order by counter 196 197 }}} … … 208 209 where a.attemptdate between now() - interval '3 months' and now() 209 210 order by res.points desc 211 group by a.attemptdate 210 212 limit 5; 211 213 }}}