大数据框架之Hive: 第7章 综合案例练习(初级)

第7章 综合案例练习(初级)

一 环境准备

1.1 建表语句

hive>
-- 创建学生表
DROP TABLE IF EXISTS student;
create table if not exists student_info(
    stu_id string COMMENT '学生id',
    stu_name string COMMENT '学生姓名',
    birthday string COMMENT '出生日期',
    sex string COMMENT '性别'
) 
row format delimited fields terminated by ',' 
stored as textfile;

-- 创建课程表
DROP TABLE IF EXISTS course;
create table if not exists course_info(
    course_id string COMMENT '课程id',
    course_name string COMMENT '课程名',
    tea_id string COMMENT '任课老师id'
) 
row format delimited fields terminated by ',' 
stored as textfile;

-- 创建老师表
DROP TABLE IF EXISTS teacher;
create table if not exists teacher_info(
    tea_id string COMMENT '老师id',
    tea_name string COMMENT '学生姓名'
) 
row format delimited fields terminated by ',' 
stored as textfile;

-- 创建分数表
DROP TABLE IF EXISTS score;
create table if not exists score_info(
    stu_id string COMMENT '学生id',
    course_id string COMMENT '课程id',
    score int COMMENT '成绩'
) 
row format delimited fields terminated by ',' 
stored as textfile;

1.2 数据准备

(1)创建/opt/module/data目录

[atguigu@hadoop102 module]$ mkdir data

(2)将如下4个文件放到/opt/module/data目录下

(3)数据样式说明

[atguigu@hadoop102 data]$ vim student_info.txt

001,彭于晏,1995-05-16,002,胡歌,1994-03-20,003,周杰伦,1995-04-30,004,刘德华,1998-08-28,005,唐国强,1993-09-10,006,陈道明,1992-11-12,007,陈坤,1999-04-09,008,吴京,1994-02-06,009,郭德纲,1992-12-05,010,于谦,1998-08-23,011,潘长江,1995-05-27,012,杨紫,1996-12-21,013,蒋欣,1997-11-08,014,赵丽颖,1990-01-09,015,刘亦菲,1993-01-14,016,周冬雨,1990-06-18,017,范冰冰,1992-07-04,018,李冰冰,1993-09-24,019,邓紫棋,1994-08-31,020,宋丹丹,1991-03-01,[atguigu@hadoop102 data]$ vim course_info.txt

01,语文,1003
02,数学,1001
03,英语,1004
04,体育,1002
05,音乐,1002

[atguigu@hadoop102 data]$ vim teacher_info.txt

1001,张高数
1002,李体音
1003,王子文
1004,刘丽英

[atguigu@hadoop102 data]$ vim score_info.txt

001,01,94
002,01,74
004,01,85
005,01,64
006,01,71
007,01,48
008,01,56
009,01,75
010,01,84
011,01,61
012,01,44
013,01,47
014,01,81
015,01,90
016,01,71
017,01,58
018,01,38
019,01,46
020,01,89
001,02,63
002,02,84
004,02,93
005,02,44
006,02,90
007,02,55
008,02,34
009,02,78
010,02,68
011,02,49
012,02,74
013,02,35
014,02,39
015,02,48
016,02,89
017,02,34
018,02,58
019,02,39
020,02,59
001,03,79
002,03,87
004,03,89
005,03,99
006,03,59
007,03,70
008,03,39
009,03,60
010,03,47
011,03,70
012,03,62
013,03,93
014,03,32
015,03,84
016,03,71
017,03,55
018,03,49
019,03,93
020,03,81
001,04,54
002,04,100
004,04,59
005,04,85
007,04,63
009,04,79
010,04,34
013,04,69
014,04,40
016,04,94
017,04,34
020,04,50
005,05,85
007,05,63
009,05,79
015,05,59
018,05,87

1.3 插入数据

(1)插入数据

hive>
load data local inpath '/opt/module/data/student_info.txt' into table student_info;

load data local inpath '/opt/module/data/course_info.txt' into table course_info;

load data local inpath '/opt/module/data/teacher_info.txt' into table teacher_info;

load data local inpath '/opt/module/data/score_info.txt' into table score_info;

(2)验证插入数据情况

hive>
select * from student_info limit 5;
select * from course_info limit 5;
select * from teacher_info limit 5;
select * from score_info limit 5;

二 简单查询

2.1 查找特定条件

2.1.1 查询姓名中带“冰”的学生名单

  • code

    hive> 
    select
        *
    from student_info
    where stu_name like "%冰%";
    

结果

stu_id  stu_name    birthday  sex
017          范冰冰            1992-07-04018          李冰冰            1993-09-24

2.1.2 查询姓“王”老师的个数

  • code

    hive> 
    select 
        count(*)  wang_count
    from teacher_info
    where tea_name like '王%';
    

结果

wang_count
1

2.1.3 检索课程编号为“04”且分数小于60的学生的课程信息,结果按分数降序排列

  • code

    hive> 
    select
        stu_id,
        course_id,
        score
    from score_info
    where course_id ='04' and score<60
    order by score desc;
    

结果

stu_id  course_id   score
004     04        59
001     04        54
020     04        50
014     04        40
017     04        34
010     04        34

2.1.4 查询数学成绩不及格的学生和其对应的成绩,按照学号升序排序

  • code

    hive> 
    select
        s.stu_id,
        s.stu_name,
        t1.score
    from student_info s
    join (
        select
            *
        from score_info
        where course_id=(select course_id from course_info where course_name='数学') and score < 60
        ) t1 on s.stu_id = t1.stu_id
    order by s.stu_id;
    
select
    s.stu_id,
    st.stu_name,
    s.score
from score_info s
join student_info st
on s.stu_id=st.stu_id
join course_info c
on c.course_id=s.course_id
where c.course_name = '数学' and s.score < 60
order by stu_id;

结果

s.stu_id  s.stu_name   t1.score
005     唐国强      44
007     陈坤        55
008     吴京        34
011     潘长江      49
013     蒋欣        35
014     赵丽颖      39
015     刘亦菲      48
017     范冰冰      34
018     李冰冰      58
019     邓紫棋      39
020     宋丹丹      59

三 汇总分析

3.1 汇总分析

3.1.1 查询编号为“02”的课程的总成绩

  • code

    hive>
    select
        course_id,
        sum(score) score_sum
    from score_info
    where course_id='02'
    group by course_id;
    

结果

course_id    score_sum  
02          1133

3.1.2 查询参加考试的学生个数

思路:对成绩表中的学号做去重并count

  • code

    hive>
    select
        count(distinct stu_id) stu_num
    from score_info;
    

结果

stu_num                                                                             
19

3.2 分组

3.2.1 查询各科成绩最高和最低的分,以如下的形式显示:课程号,最高分,最低分

思路:按照学科分组并使用max和min。

  • code

    hive> 
    select
        course_id,
        max(score) max_score,
        min(score) min_score
    from score_info
    group by course_id;
    

结果

course_id  max_score  min_score 
01        94          38 
02        93          34 
03        99          32 
04        100         34 
05        87          59

3.2.2 查询每门课程有多少学生参加了考试(有考试成绩)

  • code

    hive> 
    select
        course_id,
        count(stu_id) stu_num
    from score_info
    group by course_id;
    

结果

course_id    stu_num
01          19
02          19
03          19
04          12
05          5

3.2.3 查询男生、女生人数

  • code

    hive>
    select
        sex,
        count(stu_id) count
    from student_info
    group by sex;
    

结果

sex     count
女      911

3.3 分组结果的条件

3.3.1 查询平均成绩大于60分的学生的学号和平均成绩

1)思路分析

(1)平均成绩:展开来说就是计算每个学生的平均成绩

(2)这里涉及到“每个”就是要分组了

(3)平均成绩大于60分,就是对分组结果指定条件

(4)首先要分组求出每个学生的平均成绩,筛选高于60分的,并反查出这批学生,统计出这些学生总的平均成绩。

2)Hql实操

  • code

    hive> 
    select
        stu_id,
        avg(score) score_avg
    from score_info
    group by stu_id
    having score_avg > 60;
    

结果

stu_id  score_avg
001     72.5
002     86.25
004     81.5
005     75.4
006     73.33333333333333
009     74.2
013     61.0
015     70.25
016     81.25
020     69.75

3.3.2 查询至少选修四门课程的学生学号

1)思路分析

(1)需要先计算出每个学生选修的课程数据,需要按学号分组

(2)至少选修两门课程:也就是每个学生选修课程数目>=4,对分组结果指定条件

2)Hql实操

  • code

    hive> 
    select
        stu_id,
        count(course_id) course_count
    from score_info
    group by stu_id
    having course_count >=4;
    

结果

stu_id	course_num
001		4
002		4
004		4
005		5
007		5
009		5
010		4
013		4
014		4
015		4
016		4
017		4
018		4
020		4

3.3.3 [课堂讲解]查询同姓(假设每个学生姓名的第一个字为姓)的学生名单并统计同姓人数大于2的姓

思路:先提取出每个学生的姓并分组,如果分组的count>=2则为同姓

  • code

    hive>
    select
        t1.first_name,
        count(*) count_first_name
    from (
             select
                 stu_id,
                 stu_name,
                 substr(stu_name,0,1) first_name
             from student_info
    ) t1
    group by t1.first_name
    having count_first_name >= 2;
    

结果

t1.first_name   count_first_name
刘      222

3.3.4 查询每门课程的平均成绩,结果按平均成绩升序排序,平均成绩相同时,按课程号降序排列

思路:按照课程号分组并求组内的平均值

  • code

    hive>
    select
        course_id,
        avg(score) score_avg
    from score_info
    group by course_id
    order by score_avg asc, course_id desc;
    

结果

course_id   score_avg
02         59.63157894736842
04         63.416666666666664
01         67.15789473684211
03         69.42105263157895
05         74.6

3.3.5 统计参加考试人数大于等于15的学科

按课程分组并统计组内人数,过滤条件大于等于15

  • code

    hive>
    select
        course_id,
        count(stu_id) stu_count
    from score_info
    group by course_id
    having stu_count >= 15;
    

结果

course_id   stu_count
01         19
02         19
03         19

3.4 查询结果排序&分组指定条件

3.4.1 查询学生的总成绩并按照总成绩降序排序

思路:分组、sum、排序

  • code

    hive>
    select
        stu_id,
        sum(score) sum_score
    from score_info
    group by stu_id
    order by sum_score desc;
    

结果

stu_id	sum_score
005	377
009	371
002	345
004	326
016	325
007	299
001	290
015	281
020	279
013	244
010	233
018	232
006	220
014	192
017	181
012	180
011	180
019	178
008	129

3.4.2 [课堂讲解]按照如下格式显示学生的语文、数学、英语三科成绩,没有成绩的输出为0,按照学生的有效平均成绩降序显示

学生id 语文 数学 英语 有效课程数 有效平均成绩

  • code

    hive>
    select
      si.stu_id,
      sum(if(ci.course_name='语文',score,0))  `语文`,
      sum(if(ci.course_name='数学',score,0))  `数学`,
      sum(if(ci.course_name='英语',score,0))  `英语`,
      count(*)  `有效课程数`,
      avg(si.score)  `平均成绩`
    from
      score_info si
    join
      course_info ci
    on
      si.course_id=ci.course_id
    group by
      si.stu_id
    order by
      `平均成绩` desc
    
select
    sc.stu_id `学生id`,
    sum(case when ci.course_name='语文' and sc.score > 0 then score else 0 end) `语文`,
    sum(case when ci.course_name='数学' and sc.score > 0 then score else 0 end) `数学`,
    sum(case when ci.course_name='英语' and sc.score > 0 then score else 0 end) `英语`,
    count(ci.course_id) `有效课程数`,
    avg(sc.score) `平均成绩`
from score_info sc
join course_info ci
on sc.course_id=ci.course_id
group by sc.stu_id
order by `平均成绩` desc;

结果

学生id  语文    数学    英语   有效课程数      平均成绩
002     74      84      87      4              86.25
004     85      93      89      4              81.5
016     71      89      71      4              81.25
005     64      44      99      5              75.4
009     75      78      60      5              74.2
006     71      90      59      3              73.33333333333333
001     94      63      79      4              72.5
015     90      48      84      4              70.25
020     89      59      81      4              69.75
013     47      35      93      4              61.0
012     44      74      62      3              60.0
011     61      49      70      3              60.0
007     48      55      70      5              59.8
019     46      39      93      3              59.333333333333336
010     84      68      47      4              58.25
018     38      58      49      4              58.0
014     81      39      32      4              48.0
017     58      34      55      4              45.25
008     56      34      39      3              43.0

3.4.3 查询一共参加三门课程且其中一门为语文课程的学生的id和姓名

  • code

    hive>
    select
        t2.stu_id,
        s.stu_name
    from (
             select t1.stu_id
             from (
                      select stu_id,
                             course_id
                      from score_info
                      where stu_id in (
                          select stu_id
                          from score_info
                          where course_id = "01"
                      )
                  ) t1
             group by t1.stu_id
             having count(t1.course_id) = 3
         ) t2
    join student_info s on t2.stu_id = s.stu_id;
    

结果

t2.stu_id       s.stu_name
006          陈道明
008          吴京
011          潘长江
012          杨紫
019          邓紫棋

四 复杂查询

4.1 子查询

4.1.1 [课堂讲解]查询所有课程成绩均小于60分的学生的学号、姓名

  • code

    hive>
    select s.stu_id,
           s.stu_name
    from (
             select stu_id,
                    sum(if(score >= 60, 1, 0)) flag
             from score_info
             group by stu_id
             having flag = 0
         ) t1
             join student_info s on s.stu_id = t1.stu_id;
    

结果

s.stu_id  s.stu_name
008          吴京
017          范冰冰

4.1.2 查询没有学全所有课的学生的学号、姓名

解释:没有学全所有课,也就是该学生选修的课程数 < 总的课程数

  • code

    hive>
    select 
        s.stu_id,
        s.stu_name
    from student_info s
    left join score_info sc on s.stu_id = sc.stu_id
    group by s.stu_id, s.stu_name
    having count(course_id) < (select count(course_id) from course_info);
    

结果

s.stu_id  s.stu_name
001     彭于晏
002     胡歌
003     周杰伦
004     刘德华
006     陈道明
008     吴京
010     于谦
011     潘长江
012     杨紫
013     蒋欣
014     赵丽颖
015     刘亦菲
016     周冬雨
017     范冰冰
018     李冰冰
019     邓紫棋
020     宋丹丹

4.1.3 查询出只选修了三门课程的全部学生的学号和姓名

解释:学生选修的课程数 = 3

  • code

    hive>
    select
        s.stu_id,
        s.stu_name
    from student_info s
    join (
        select
            stu_id,
            count(course_id) course_count
        from score_info
        group by stu_id
        having course_count =3
        ) t1
    on s.stu_id = t1.stu_id;
    

结果

s.stu_id  s.stu_name
006     陈道明
008     吴京
011     潘长江
012     杨紫
019     邓紫棋

五 多表查询

5.1 表联结

5.1.1 [课堂讲解]查询有两门以上的课程不及格的同学的学号及其平均成绩

① 先找出有两门以上不及格的学生名单,按照学生分组,过滤组内成绩低于60的并进行count,count>=2。

② 接着做出一张表查询学生的平均成绩并和上一个子查询中的学生学号进行连接

  • code

    hive>
    select
        t1.stu_id,
        t2.avg_score
    from (
             select
                 stu_id,
                 sum(if(score < 60,1,0)) flage
             from score_info
             group by stu_id
             having flage >= 2
    ) t1
    join (
        select
            stu_id,
            avg(score) avg_score
        from score_info
        group by stu_id
    ) t2 on t1.stu_id = t2.stu_id;
    

结果

t1.stu_id       t2.avg_score
007           59.8
008           43.0
010           58.25
013           61.0
014           48.0
015           70.25
017           45.25
018           58.0
019           59.333333333333336
020           69.75

5.1.2 查询所有学生的学号、姓名、选课数、总成绩

  • code

    hive>
    select
        s.stu_id,
        s.stu_name,
        count(sc.course_id) count_course,
        sum(sc.score) sum_score
    from student_info s
    left join score_info sc on s.stu_id = sc.stu_id
    group by s.stu_id,s.stu_name;
    

结果

stu_id      stu_name    course_count    course_sum
001           彭于晏              4              290
002           胡歌                4              345
003	           周杰伦              0              0
004           刘德华              4              326
005           唐国强              5              377
006           陈道明              3              220
007           陈坤                5              299
008           吴京                3              129
009           郭德纲              5              371
010           于谦                4              233
011           潘长江              3              180
012           杨紫                3              180
013           蒋欣                4              244
014           赵丽颖              4              192
015           刘亦菲              4              281
016           周冬雨              4              325
017           范冰冰              4              181
018           李冰冰              4              232
019           邓紫棋              3              178
020           宋丹丹              4              279

5.1.3 查询平均成绩大于85的所有学生的学号、姓名和平均成绩

  • code

    hive>
    select s.stu_id,
           s.stu_name,
           avg(sc.score) avg_score
    from score_info sc
    left join student_info s on s.stu_id = sc.stu_id
    group by s.stu_id, s.stu_name
    having avg_score > 85
    

结果

stu_id        stu_name      avg_score
002           胡歌            86.25

5.1.4 查询学生的选课情况:学号,姓名,课程号,课程名称

  • code

    hive>
    select
        s.stu_id,
        s.stu_name,
        c.course_id,
        c.course_name
    from score_info sc
    join course_info c on sc.course_id = c.course_id
    join student_info s on sc.stu_id = s.stu_id;
    

结果

s.stu_id	s.stu_name	c.course_id	c.course_name
001	彭于晏	01	语文
002	胡歌	01	语文
004	刘德华	01	语文
005	唐国强	01	语文
006	陈道明	01	语文
007	陈坤	01	语文
008	吴京	01	语文
009	郭德纲	01	语文
010	于谦	01	语文
011	潘长江	01	语文
012	杨紫	01	语文
013	蒋欣	01	语文
014	赵丽颖	01	语文
015	刘亦菲	01	语文
016	周冬雨	01	语文
017	范冰冰	01	语文
018	李冰冰	01	语文
019	邓紫棋	01	语文
020	宋丹丹	01	语文
001	彭于晏	02	数学
002	胡歌	02	数学
004	刘德华	02	数学
005	唐国强	02	数学
006	陈道明	02	数学
007	陈坤	02	数学
008	吴京	02	数学
009	郭德纲	02	数学
010	于谦	02	数学
011	潘长江	02	数学
012	杨紫	02	数学
013	蒋欣	02	数学
014	赵丽颖	02	数学
015	刘亦菲	02	数学
016	周冬雨	02	数学
017	范冰冰	02	数学
018	李冰冰	02	数学
019	邓紫棋	02	数学
020	宋丹丹	02	数学
001	彭于晏	03	英语
002	胡歌	03	英语
004	刘德华	03	英语
005	唐国强	03	英语
006	陈道明	03	英语
007	陈坤	03	英语
008	吴京	03	英语
009	郭德纲	03	英语
010	于谦	03	英语
011	潘长江	03	英语
012	杨紫	03	英语
013	蒋欣	03	英语
014	赵丽颖	03	英语
015	刘亦菲	03	英语
016	周冬雨	03	英语
017	范冰冰	03	英语
018	李冰冰	03	英语
019	邓紫棋	03	英语
020	宋丹丹	03	英语
001	彭于晏	04	体育
002	胡歌	04	体育
004	刘德华	04	体育
005	唐国强	04	体育
007	陈坤	04	体育
009	郭德纲	04	体育
010	于谦	04	体育
013	蒋欣	04	体育
014	赵丽颖	04	体育
016	周冬雨	04	体育
017	范冰冰	04	体育
020	宋丹丹	04	体育
005	唐国强	05	音乐
007	陈坤	05	音乐
009	郭德纲	05	音乐
015	刘亦菲	05	音乐
018	李冰冰	05	音乐
Time taken: 20.878 seconds, Fetched: 74 row(s)

5.1.5 查询出每门课程的及格人数和不及格人数

  • code

    hive> 
    select
        c.course_id,
        c.course_name,
        t1.`及格人数`,
        t1.`不及格人数`
    from course_info c
    join (
        select
            course_id,
            sum(if(score >= 60,1,0)) as `及格人数`,
            sum(if(score < 60,1,0)) as `不及格人数`
        from score_info
        group by course_id
        ) t1 on c.course_id = t1.course_id;
    

结果

c.course_id     c.course_name   t1.及格人数     t1.不及格人数
01            语文            12            7
02            数学            8             11
03            英语            13            6
04            体育            6             6
05            音乐            4             1
Time taken: 10.746 seconds, Fetched: 5 row(s)

5.1.6 查询课程编号为03且课程成绩在80分以上的学生的学号和姓名及课程信息

  • code

    hive>
    select
        s.stu_id,
        s.stu_name,
        t1.score,
        t1.course_id,
        c.course_name
    from student_info s
    join (
        select
            stu_id,
            score,
            course_id
        from score_info
        where score > 80 and course_id = '03'
        ) t1
    on s.stu_id = t1.stu_id
    join course_info c on c.course_id = t1.course_id;
    

结果

s.stu_id        s.stu_name      t1.score       t1.course_id    c.course_name
002           胡歌            87             03             英语
004           刘德华          89             03             英语
005           唐国强          99             03             英语
013           蒋欣            93             03             英语
015           刘亦菲          84             03             英语
019           邓紫棋          93             03             英语
020           宋丹丹          81             03             英语
Time taken: 9.064 seconds, Fetched: 7 row(s)

5.2 多表连接

5.2.1 课程编号为"01"且课程分数小于60,按分数降序排列的学生信息

  • code

    hive>
    select
        s.stu_id,
        s.stu_name,
        s.birthday,
        s.sex,
        t1.score
    from student_info s
    join (
        select
            stu_id,
            course_id,
            score
        from score_info
        where score < 60 and course_id = '01'
        ) t1
    on s.stu_id=t1.stu_id
    order by t1.score desc;
    

结果

s.stu_id        s.stu_name      s.birthday      s.sex   t1.score
017           范冰冰        1992-07-0458
008           吴京          1994-02-0656
007           陈坤          1999-04-0948
013           蒋欣          1997-11-0847
019           邓紫棋        1994-08-3146
012           杨紫          1996-12-2144
018           李冰冰        1993-09-2438
Time taken: 8.936 seconds, Fetched: 7 row(s)

5.2.2 查询所有课程成绩在70分以上的学生的姓名、课程名称和分数,按分数升序排列

  • code

    hive>
    select
        s.stu_id,
        s.stu_name,
        c.course_name,
        s2.score
    from student_info s
    join (
        select
            stu_id,
            sum(if(score >= 70,0,1)) flage
        from score_info
        group by stu_id
        having flage =0
        ) t1
    on s.stu_id = t1.stu_id
    left join score_info s2 on s.stu_id = s2.stu_id
    left join course_info c on s2.course_id = c.course_id;
    

结果

s.stu_id      s.stu_name    c.course_name  s2.course
002     胡歌    语文    74
002     胡歌    数学    84
002     胡歌    英语    87
002     胡歌    体育    100
016     周冬雨  语文    71
016     周冬雨  数学    89
016     周冬雨  英语    71
016     周冬雨  体育    94
Time taken: 27.166 seconds, Fetched: 8 row(s)

5.2.3 查询该学生不同课程的成绩相同的学生编号、课程编号、学生成绩

  • code

    hive>
    select
        sc1.stu_id,
        sc1.course_id,
        sc1.score
    from score_info sc1 
    join score_info sc2 on sc1.stu_id = sc2.stu_id
    and sc1.course_id <> sc2.course_id
    and sc1.score = sc2.score;
    

结果

sc1.stu_id   sc1.course_id    sc1.score
016       03            71
017       04            34
016       01            71
005       05            85
007       05            63
009       05            79
017       02            34
005       04            85
007       04            63
009       04            79
Time taken: 8.881 seconds, Fetched: 10 row(s)

5.2.4 查询课程编号为“01”的课程比“02”的课程成绩高的所有学生的学号

知识点:多表连接 + 条件

  • code

    hive>
    select
        s1.stu_id
    from
    (
        select
            sc1.stu_id,
            sc1.course_id,
            sc1.score
        from  score_info sc1
        where sc1.course_id ='01'
    ) s1
    join
    (
        select
            sc2.stu_id,
            sc2.course_id,
            score
        from score_info sc2
        where sc2.course_id ="02"
    )s2
    on s1.stu_id=s2.stu_id
    where s1.score > s2.score;
    

结果

stu_id
001
005
008
010
011
013
014
015
017
019
020

5.2.5 查询学过编号为“01”的课程并且也学过编号为“02”的课程的学生的学号、姓名

  • code

    hive>
    select
        t1.stu_id as `学号`,
        s.stu_name as `姓名`
    from
    (
        select
            stu_id
        from score_info sc1
        where sc1.course_id='01'
        and stu_id in (
              select
                  stu_id
              from score_info sc2
              where sc2.course_id='02'
              )
    )t1
    join student_info s
    on t1.stu_id = s.stu_id;
    

结果

学号    姓名
001     彭于晏
002     胡歌
004     刘德华
005     唐国强
006     陈道明
007     陈坤
008     吴京
009     郭德纲
010     于谦
011     潘长江
012     杨紫
013     蒋欣
014     赵丽颖
015     刘亦菲
016     周冬雨
017     范冰冰
018     李冰冰
019     邓紫棋
020     宋丹丹
Time taken: 10.161 seconds, Fetched: 19 row(s)

5.2.6 [课堂讲解]查询学过“李体音”老师所教的所有课的同学的学号、姓名

  • code

    hive>
    select
        t1.stu_id,
        si.stu_name
    from
    (
        select
            stu_id
        from score_info si
        where course_id in
        (
            select
               course_id
            from course_info c
            join teacher_info t
            on c.tea_id = t.tea_id
            where tea_name='李体音'      --李体音教的所有课程
        )
        group by stu_id
        having count(*)=2       --学习所有课程的学生
    )t1
    left join student_info si
    on t1.stu_id=si.stu_id;
    

结果

s.stu_id    s.stu_name
005       唐国强
007       陈坤
009       郭德纲
Time taken: 27.16 seconds, Fetched: 3 row(s)

5.2.7 [课堂讲解]查询学过“李体音”老师所讲授的任意一门课程的学生的学号、姓名

  • code

    hive>
    select
        t1.stu_id,
        si.stu_name
    from
    (
        select
            stu_id
        from score_info si
        where course_id in
        (
            select
               course_id
            from course_info c
            join teacher_info t
            on c.tea_id = t.tea_id
            where tea_name='李体音'
        )
        group by stu_id
    )t1
    left join student_info si
    on t1.stu_id=si.stu_id;
    

结果

s.stu_id    s.stu_name
001       彭于晏
002       胡歌
004       刘德华
005       唐国强
007       陈坤
009       郭德纲
010       于谦
013       蒋欣
014       赵丽颖
015       刘亦菲
016       周冬雨
017       范冰冰
018       李冰冰
020       宋丹丹
Time taken: 9.391 seconds, Fetched: 14 row(s)

5.2.8 [课堂讲解]查询没学过"李体音"老师讲授的任一门课程的学生姓名

  • code

    hive>
    select
        stu_id,
        stu_name
    from student_info
    where stu_id not in
    (
        select
            stu_id
        from score_info si
        where course_id in
        (
            select
               course_id
            from course_info c
            join teacher_info t
            on c.tea_id = t.tea_id
            where tea_name='李体音'
        )
        group by stu_id
    );
    

结果

stu_id  stu_name
003     周杰伦
006     陈道明
008     吴京
011     潘长江
012     杨紫
019     邓紫棋
Time taken: 36.559 seconds, Fetched: 6 row(s)

5.2.9 [课堂讲解]查询至少有一门课与学号为“001”的学生所学课程相同的学生的学号和姓名

  • code

    hive>
    select
        si.stu_id,
        si.stu_name
    from score_info sc
    join student_info si
    on sc.stu_id = si.stu_id
    where sc.course_id in
    (
        select
            course_id
        from score_info
        where stu_id='001'    --001的课程
    ) and sc.stu_id <> '001'  --排除001学生
    group by si.stu_id,si.stu_name;
    

结果

s1.stu_id     s2.stu_name
002          胡歌
004          刘德华
005          唐国强
006          陈道明
007          陈坤
008          吴京
009          郭德纲
010          于谦
011          潘长江
012          杨紫
013          蒋欣
014          赵丽颖
015          刘亦菲
016          周冬雨
017          范冰冰
018          李冰冰
019          邓紫棋
020          宋丹丹
Time taken: 8.97 seconds, Fetched: 18 row(s)

5.2.10 按平均成绩从高到低显示所有学生的所有课程的成绩以及平均成绩

  • code

    hive>
    select
        si.stu_name,
        ci.course_name,
        sc.score,
        t1.avg_score
    from score_info sc
    join student_info si
    on sc.stu_id=si.stu_id
    join course_info ci
    on sc.course_id=ci.course_id
    join
    (
        select
            stu_id,
            avg(score) avg_score
        from score_info
        group by stu_id
    )t1
    on sc.stu_id=t1.stu_id
    order by t1.avg_score desc;
    

结果

t2.stu_name  t2.course_name  t2.score       t1.avg_score
胡歌    体育    100     86.25
胡歌    数学    84      86.25
胡歌    英语    87      86.25
胡歌    语文    74      86.25
刘德华  体育    59      81.5
刘德华  语文    85      81.5
刘德华  英语    89      81.5
刘德华  数学    93      81.5
周冬雨  英语    71      81.25
周冬雨  数学    89      81.25
周冬雨  体育    94      81.25
周冬雨  语文    71      81.25
唐国强  数学    44      75.4
唐国强  音乐    85      75.4
唐国强  语文    64      75.4
唐国强  体育    85      75.4
唐国强  英语    99      75.4
郭德纲  音乐    79      74.2
郭德纲  体育    79      74.2
郭德纲  英语    60      74.2
郭德纲  语文    75      74.2
郭德纲  数学    78      74.2
陈道明  语文    71      73.33333333333333
陈道明  数学    90      73.33333333333333
陈道明  英语    59      73.33333333333333
……
李冰冰  音乐    87      58.0
李冰冰  语文    38      58.0
李冰冰  英语    49      58.0
李冰冰  数学    58      58.0
赵丽颖  数学    39      48.0
赵丽颖  语文    81      48.0
赵丽颖  体育    40      48.0
赵丽颖  英语    32      48.0
范冰冰  英语    55      45.25
范冰冰  体育    34      45.25
范冰冰  数学    34      45.25
范冰冰  语文    58      45.25
吴京    语文    56      43.0
吴京    数学    34      43.0
吴京    英语    39      43.0
Time taken: 20.137 seconds, Fetched: 74 row(s)

你可能感兴趣的:(大数据框架之Hive,大数据,hive,hadoop)