嵌套查询--------关联一对多关系----------collection

Posted 奋斗的少年WH

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了嵌套查询--------关联一对多关系----------collection相关的知识,希望对你有一定的参考价值。

参考来源:   http://www.cnblogs.com/LvLoveYuForever/p/6689577.html

 

 <resultMap id="BaseResultMap" type="com.icss.ys.pojo.Customer" >
    <id column="customer_id" property="customerId" jdbcType="INTEGER" />
    <result column="customer_name" property="customerName" jdbcType="VARCHAR" />
    <result column="customer_card" property="customerCard" jdbcType="VARCHAR" /> 
    	
  	<!-- 关联一对多关系      column="customer_id" 此处customer_id作为参数传给select嵌套查询    -->
  	<collection property="tickets" ofType="com.icss.ys.pojo.Ticket" 
  	select="selectTicket" column="customer_id" ></collection>
  </resultMap>
  
  <select id="selectTicket" resultMap="com.icss.ys.dao.TicketMapper.BaseResultMap">
    	select *
    	from ticket
    	where customer_id = #{customer_id}
  </select>
  <select id="selectCustomerByName" resultMap="BaseResultMap" >
    	select *
    	from customer  where customer_name=#{customer_name} 	
  </select>

  

以上是关于嵌套查询--------关联一对多关系----------collection的主要内容,如果未能解决你的问题,请参考以下文章

MyBatis一对多关联表查询是使用嵌套结果好还是嵌套查询好?

MyBatis高级篇 - 关联查询(一对多)

10.关联关系查询

MyBatis_关联关系查询

MySQL 基础 -- 多表关系(一对一1对多(多对一)多对多)多表查询(内连接外连接自连接子查询(嵌套查询)联合查询 union)笛卡儿积

Mybatis学习系列关联查询