首页 > 后端开发 > php教程 > SQL语句问题,关联查询,一对多

SQL语句问题,关联查询,一对多

WBOY
发布: 2016-06-23 13:46:31
原创
1395 人浏览过

比如老师和学生表,一个老师对应多个学生。想查出来老师A和他对应的学生1,2,3,老师B和他对应的4,5,6.


回复讨论(解决方案)

select * from 学生表 a,教师表 b,教师学生关系表 c where a.studentid = c.studentid and b.teacherid = teacherid and b.teacherid = 你要查的老师id
登录后复制

表结构是怎样的?
table teacher
id name
1     A
2     B

table student
id  tid
1    1
2    1
3    1
4    2
5    2
6    2

A老师的学生
select * from student where tid=1;

B老师的学生
select * from student where tid=2;

或者 select a.*,b.name from student as a left join teacher as b on a.tid = b.id order by a.tid;

老师有个ID  查询 符合这个ID 条件的所有学生...

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板