码迷,mamicode.com
首页 > 其他好文 > 详细

mybatis处理一对一查询

时间:2016-12-23 01:28:22      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:嵌套结果   bat   查询方式   iat   type   from   map   sql   _id   

1、使用嵌套结果方式

sql语句:select c.* ,t.t_name from class c,teacher t where c.teacher_id = t.t_id where c.c_id = #{id}  

<resultMap>

<id property="" column=""/>

<result property="" column=""/>

<association property="teacher" javaType="Teacher">

<association>

</resultMap>

2、使用嵌套查询方式

select * from class where c_id = #{id}

select * from teacher where t_id = #{teacher_id} //使用上一个查询的结果teacher_id

 

<resultMap>

<id property="" column=""/>

<result property="" column=""/>

<association property="teacher" column="teacher_id"  select="getTeacher">

<association>

</resultMap>

 

mybatis处理一对一查询

标签:嵌套结果   bat   查询方式   iat   type   from   map   sql   _id   

原文地址:http://www.cnblogs.com/hy87/p/6213328.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!