@@ -64,13 +64,13 @@
AND month = #{month}
<choose>
<when test="type == 1">
- ORDER BY first_score
+ ORDER BY first_score DESC
</when>
<when test="type == 2">
- ORDER BY center_score
+ ORDER BY center_score DESC
<when test="type == 3">
- ORDER BY high_score
+ ORDER BY high_score DESC
</choose>
</select>