67,549
社区成员




<choose>
<when test="sort != null and sort.trim() != ''">
order by ${sort} ${order}
</when>
<otherwise>
order by `problem_id` asc
</otherwise>
</choose>
SELECT * FROM `test_problem` ORDER BY problem_id asc;