在MyBatis中,可以使用如下方式进行分页查询数据库:
<select id="selectUsers" resultType="User">
select * from users
limit #{pageSize} offset #{offset}
</select>
public List<User> selectUsers(@Param("pageSize") int pageSize, @Param("offset") int offset);
List<User> users = userMapper.selectUsers(10, 0); // 查询第一页,每页10条记录
通过以上步骤,就可以实现在MyBatis中进行分页查询数据库的功能。