Changes between Version 3 and Version 4 of AdvancedReports
- Timestamp:
- 01/11/23 00:29:54 (23 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AdvancedReports
v3 v4 103 103 104 104 105 == Прашања рангирани според бројот на точни одговори 106 107 108 {{{ 109 select q.questiontext, 110 count(s.choiceid) as counter 111 112 from question q 113 114 join selectionquestion sq 115 on q.questionid = sq.questionid 116 left join choice c 117 on c.questionid = q.questionid 118 left join selectedchoice s 119 on s.choiceid = c.choiceid 120 where s.choiceid=c.choiceid and c.iscorrect 121 group by 1 122 order by counter 123 }}} 124 125