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关联查询一对一和一对多的实现

mybatis的动态sql编写以及一对一关系查询和一对多的查询

Mybatis学习第19节 -- 嵌套查询一对多的配置

阶段3 1.Mybatis_12.Mybatis注解开发_7 Mybatis注解开发一对多的查询配置

mybatis中的一对多的查询

mybatis笔试题2