我是靠谱客的博主 复杂棒棒糖,最近开发中收集的这篇文章主要介绍Ibtis的where子句问题,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

最近遇到sql语句在pl/sql里能查出数据,但直接放到ibatis配置文件里却查询结果为空,语句为:
select p.* from t_petitionletter p join t_processflow f on p.processflow = f.id where f.flowstate = '办理'

发现[color=red]ibatis不支持直接在配置文件里写where子句,需要使用ibatis的动态where子句标签[/color]:


<select id="selectPetitionLetterForFlow" resultMap="PetitionLetterResult" parameterClass="string">
select p.* from t_petitionletter p join t_processflow f on p.processflow = f.id
<dynamic prepend="where">
<isNotEmpty prepend="and">
f.flowstate = #flowstate#
</isNotEmpty>
</dynamic>
</select>

最后

以上就是复杂棒棒糖为你收集整理的Ibtis的where子句问题的全部内容,希望文章能够帮你解决Ibtis的where子句问题所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(43)

评论列表共有 0 条评论

立即
投稿
返回
顶部