当前位置: 代码迷 >> SQL >> IBATIS怎么复用SQL片段
  详细解决方案

IBATIS怎么复用SQL片段

热度:207   发布时间:2016-05-05 15:22:31.0
IBATIS如何复用SQL片段

为了消除重复片段,我们使用【sql】和【include】标签。【sql】标签用来包含重复片段,【include】标签用来引入片段: xml 代码

<sql id="selectItem_fragment">
FROM items
WHERE parentid = 6
sql>
<select id="selectItemCount" resultClass="int">
SELECT COUNT(*) AS total
<include refid="selectItem_fragment"/>
select>
<select id="selectItems" resultClass="Item">
SELECT id, name
<include refid="selectItem_fragment"/>
select>

  相关解决方案