mybatis处理一对多的查询
Posted hy7873
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis处理一对多的查询相关的知识,希望对你有一定的参考价值。
//查询出某个班级对应的所有老师和学生
1、使用嵌套结果
select * from classes c,teacher t,student s where c.teacher_id = t.t_id and c.c_id = s.class_id where c_id = #{id}
2、使用嵌套查询
select * from classes where c_id = #{id};
select * form teacher where t_id = #{id}
select * from student where class_id = #{id}
以上是关于mybatis处理一对多的查询的主要内容,如果未能解决你的问题,请参考以下文章
mybatis的动态sql编写以及一对一关系查询和一对多的查询