在查询数据时,想通过循环,每次只查询10万条记录。该怎样把循环的参数传入SQL中,并利用MyBatis判断参数,执行相应的SQL
相应的代码:
//循环查询信息
@SuppressWarnings({ "unchecked", "rawtypes" })
public List<AAA> getLoop(String loopNum) {
return (List)this.getBySqlKey("getLoop",loopNum);
}
XML:
<select id="getLoop" resultMap="AAA" parameterType="String">
SELECT *, ROWNUM RN from tablename
<if test = " _parameter=='1'"> WHERE RN <=100000 and RN >=1</if>
<if test = " _parameter=='2'"> WHERE RN <=200000 and RN >=100001 </if>
</select>
一开始if中写的是:
` WHERE RN <=100000 and RN >=1
WHERE RN <=200000 and RN >=100001 `
结果报错:There is no getter for property named 'loopNum' in 'class java.lang.String'。
然后按照 Mybatis中传参报错 链接里的改成_parameter,执行之后报misfired triggers,一直在查询数据,感觉是在查整个库的数据,但是一直执行不出来。
所以想判断传入MyBatis参数的值,应该使用哪种方法,可不可以用when标签?
在MyBatis的xml中替换成了when标签,并且在判断时,将判断的值加上toString(),参数名为_parameter,不需要指定成传入的参数名,参考代码如下:
<select id="getLoop" resultMap="AAA" parameterType="String">
SELECT *, ROWNUM RN from tablename
<where>
<choose>
<when test="_parameter != null and _parameter == '1'.toString()">
RN <=100000 and RN >=1
</when>
<when test="_parameter != null and _parameter == '2'.toString()">
RN <=200000 and RN >=100001
</when>
<when test="_parameter != null and _parameter == '3'.toString()">
RN <=300000 and RN >=200001
</when>
<otherwise>
RN <=1 and RN >=1
</otherwise>
</choose>
</where>
</select>
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。