Changes between Version 5 and Version 6 of AdvancedReports


Ignore:
Timestamp:
01/11/23 00:49:36 (21 months ago)
Author:
201100
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AdvancedReports

    v5 v6  
    134134order by medal_count
    135135}}}
     136
     137
     138== Рангирани корисници според бројот на обиди во последната година
     139
     140
     141{{{
     142select   u.username,
     143         count(a.attemptid) as attempted_quizzes
     144
     145from quiztaker q
     146
     147left join user_table u
     148on q.userid = u.userid
     149left join attempt a
     150on a.userid = q.userid
     151where a.attemptdate between now() - interval '1 year' and now()
     152group by 1
     153order by attempted_quizzes
     154}}}
     155
     156
     157