龚焕茏
2024-07-01 93b0c663078aa47828d5aabe901a4b4c4ee92632
src/main/resources/mapper/QuestionMapper.xml
@@ -106,4 +106,15 @@
            and deleted = 0 and status = 1
    </select>
    <select id="getRandomQuestion" resultMap="BaseResultMap">
        SELECT
               *
        FROM
             t_question tq
        WHERE
              tq.subject_id = #{subjectId} AND tq.question_type = #{questionType} AND tq.deleted = 0
        ORDER BY
                 RAND()
        LIMIT #{num}
    </select>
</mapper>