2.MyBatis 使用算术

MyBatis 如何使用算术公式

<select id="selectRank" resultMap="BaseResultMap2">
    select
    student_name, age, gender
    from student
    <if test="page !=null and size !=null">
        limit ${(page - 1) * size}, ${size}
    </if>
</select>

 

上一篇:Java Bean Copy 性能大比拼


下一篇:反射