Changes between Version 5 and Version 6 of AdvancedReports
- Timestamp:
- 01/11/23 00:49:36 (23 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AdvancedReports
v5 v6 134 134 order by medal_count 135 135 }}} 136 137 138 == Рангирани корисници според бројот на обиди во последната година 139 140 141 {{{ 142 select u.username, 143 count(a.attemptid) as attempted_quizzes 144 145 from quiztaker q 146 147 left join user_table u 148 on q.userid = u.userid 149 left join attempt a 150 on a.userid = q.userid 151 where a.attemptdate between now() - interval '1 year' and now() 152 group by 1 153 order by attempted_quizzes 154 }}} 155 156 157