mybatis的动态sql在xml文件中如下:<if test="eachBook==0">
count( loan.ITEM_ID ) AS borrowNum-- 借阅次数(册)</if><if test="eachBook==1">
count( DISTINCT item.RECORD_ID ) AS borrowNum -- 借阅次数(种)</if>如上,我要判断 eachBook 字段时 0还是 1,请问该怎么写呢,看了mybatis官方文档也没说.希望知道的兄弟告知一下,谢谢了.
2 回答
30秒到达战场
TA贡献1828条经验 获得超6个赞
MyBatis是使用OGNL表达式进行解析 所以变量要判断等于某个值使用如下:
<if test='optionType == "1" '> </if>
或者
<if test="optionType == '1'.toString() "> </if>
或者
<if test="optionType == "1" "> </if>
繁星淼淼
TA贡献1775条经验 获得超11个赞
为什么不用 case when 语句块
select sno,sname,age,saddress, (case sex when '0' then '女' when '1' then '男' else '未知' end) as 性别 from stud;
- 2 回答
- 0 关注
- 5082 浏览
添加回答
举报
0/150
提交
取消