mysql自连接查询
【摘要】 1、数据库表结构如下:create table student(id int(11) primary key not null auto_increment comment '学号',name varchar(100),gender varchar(100),class_id int(11) not null,birth_day date,literal_degree int(11),ma...
1、数据库表结构如下:
create table student(
id int(11) primary key not null auto_increment comment '学号',
name varchar(100),
gender varchar(100),
class_id int(11) not null,
birth_day date,
literal_degree int(11),
math_degree int(11),
CONSTRAINT fk_student_class_id foreign key(class_id) REFERENCES class(id)
);
create table class(
id int(11) primary key not null auto_increment,
name varchar(100),
supervisor_name varchar(100),
leader_id int(11) comment '班长学号'
);
2、测试数据
class表
student表
3、问题描述:
问题:查询数学成绩最高的学生信息和该学生班长的姓名
想法:想要获取班长的学号必须将学生表和班级表做一次内连接,但这样只能拿到学号,拿不到班长的姓名,所以用班长的学号再和学生表做一次自连接即可
select s1.id,s1.name,s1.gender,s1.class_id,s1.birth_day,s1.literal_degree,
s1.math_degree,c.leader_id,s2.name
from student s1,student s2,class c
where s1.class_id=c.id and s2.id=c.leader_id
and s1.math_degree=(select max(math_degree) from student)
今天群里看到的问题,我就帮别人解答了,对自己也是一种进步
【版权声明】本文为华为云社区用户原创内容,未经允许不得转载,如需转载请自行联系原作者进行授权。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)