在MyBatis中,可以使用嵌套查詢來實(shí)現(xiàn)多結(jié)果集查詢??梢栽趍apper.xml文件中使用
以下是一個(gè)示例:
<resultMap id="resultMap1" type="com.example.Model1">
<id property="id" column="id"/>
<result property="name" column="name"/>
</resultMap>
<resultMap id="resultMap2" type="com.example.Model2">
<id property="id" column="id"/>
<result property="age" column="age"/>
</resultMap>
<select id="getModels" resultMap="resultMap1">
SELECT * FROM model1
<resultMap id="resultMap1" type="com.example.Model1">
<id property="id" column="id"/>
<result property="name" column="name"/>
<collection property="models2" ofType="com.example.Model2" resultMap="resultMap2">
SELECT * FROM model2 WHERE id = #{id}
</collection>
</resultMap>
</select>
在這個(gè)例子中,首先查詢了model1表中的數(shù)據(jù),然后通過嵌套查詢的方式查詢了model2表中與model1數(shù)據(jù)相關(guān)聯(lián)的數(shù)據(jù),最終返回多個(gè)結(jié)果集。