首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

Ibtis的where子句有关问题

2012-10-08 
Ibtis的where子句问题最近遇到sql语句在pl/sql里能查出数据,但直接放到ibatis配置文件里却查询结果为空,语

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

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

<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>

热点排行