Changes between Version 3 and Version 4 of AdvancedReports


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

--

Legend:

Unmodified
Added
Removed
Modified
  • AdvancedReports

    v3 v4  
    103103
    104104
     105== Прашања рангирани според бројот на точни одговори
     106
     107
     108{{{
     109select   q.questiontext,
     110         count(s.choiceid) as counter 
     111
     112from question q
     113
     114join selectionquestion sq
     115on q.questionid = sq.questionid
     116left join choice c
     117on c.questionid = q.questionid
     118left join selectedchoice s
     119on s.choiceid = c.choiceid
     120where s.choiceid=c.choiceid and c.iscorrect
     121group by 1
     122order by counter
     123}}}
     124
     125