LintCode MySQL 1936. 张三的故事 III

文章目录

1. 题目

记者调查发现,张三所在学校还有一金牌教师,其所带的学生毕业后人均知名学府。
记者对该老师所教的学生的情况产生了好奇。
students 表中记录了学生的姓名以及班级 (class_id),classes 表中记录了班级的名称以及班主任 (teacher_id),teachers 表中记录了老师的名字
请编写 SQL 语句,找出 "xujia" 老师所带的班级所有同学的姓名。
LintCode MySQL 1936. 张三的故事 III
LintCode MySQL 1936. 张三的故事 III
LintCode MySQL 1936. 张三的故事 III

https://www.lintcode.com/problem/1936

2. 解题

-- Write your SQL Query here --
-- example: SELECT * FROM XX_TABLE WHERE XXX --
select * from
(
    select s.name name from
        (teachers t left join classes c 
            on t.id = c.teacher_id)
        left join students s
        on c.id = s.class_id
    where t.name = "xujia"
) tmp
where name is not null
  • LintCode 1934 解答
select name from students
where name like "zhang%"
  • LintCode 1935 解答
select c.name from
students s left join classes c
on s.class_id = c.id
where s.name = "zhangsan"

我的CSDN博客地址 https://michael.blog.csdn.net/

长按或扫码关注我的公众号(Michael阿明),一起加油、一起学习进步!
LintCode MySQL 1936. 张三的故事 III

上一篇:LintCode刷题——分割回文串Ⅱ(序列型动态规划)


下一篇:LintCode刷题——背包问题 III(动态规划)