我是靠谱客的博主 复杂棒棒糖,这篇文章主要介绍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]:

复制代码
1

<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内容请搜索靠谱客的其他文章。

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

评论列表共有 0 条评论

立即
投稿
返回
顶部