Hive练习

本文提供了一组Hive练习题,涵盖了建库建表、插入数据及复杂的查询操作,如学生、课程、教师和分数之间的关联查询,以及各种条件筛选和聚合函数的应用。通过这些练习,可以提升Hive的实际操作能力。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Hive50道练习题

一、建库建表,插入数据

– 建库
create database if not exists test;
use test;
– 建表
– 课程表
create table if not exists course(course_id int,course_name string,teacher_id int);
– 分数表
create table if not exists score(student_id int,course_id int,score int);
– 学生表
create table if not exists student(student_id int,student_name string,student_birth string,student_sex string);
– 教师表
create table if not exists teacher(teacher_id int,
teacher_name string
);
– 插入数据
– 课程表
insert into table course values
(01,‘语文’,02),
(02,‘数学’,01),
(03,‘英语’,03);
– 分数表
insert into table score values
(01,01,80),
(01,02,90),
(01,03,99),
(02,01,70),
(02,02,60),
(02,03,80),
(03,01,80),
(03,02,80),
(03,03,80),
(04,01,50),
(04,02,30),
(04,03,20),
(05,01,76),
(05,02,87),
(06,01,31),
(06,03,34),
(07,02,89),
(07,03,98);
– 学生表
insert into table student values
(01,‘赵雷’, ‘1990-01-01’,‘男’),
(02,‘钱电’, ‘1990-12-21’,‘男’),
(03,‘孙风’, ‘1990-05-20’,‘男’),
(04,‘李云’, ‘1990-08-06’,‘男’),
(05,‘周梅’, ‘1991-12-01’,‘女’),
(06,‘吴兰’, ‘1992-03-01’,‘女’),
(07,‘郑竹’, ‘1989-07-01’,‘女’),
(08,‘王菊’, ‘1990-01-20’,‘女’);
– 教师表
insert into table teacher values (01,‘张三’),(02,‘李四’),(03,‘王五’);

二、练习

1、查询"01"课程比"02"课程成绩高的学生的信息及课程分数:
%hive
with
s1 as (select stu.,sc.score score from student stu join
score sc on stu.student_id=sc.student_id and course_id=1 ),
s2 as (select stu.
,sc.score score from student stu join
score sc on stu.student_id=sc.student_id and course_id=2)
select a.*,b.score from s1 a left join s2 b on a.student_id=b.student_id where a.score>b.score or b.score is null

2.查询"01"课程比"02"课程成绩低的学生的信息及课程分数:
%hive
with
s1 as (select stu.,sc.score score from student stu join
score sc on stu.student_id=sc.student_id and course_id=1 ),
s2 as (select stu.
,sc.score score from student stu join
score sc on stu.student_id=sc.student_id and course_id=2)
select b.*,a.score from s1 a right join s2 b on a.student_id=b.student_id where a.score<b.score or a.score is null

3.查询平均成绩大于等于60分的同学的学生编号和学生姓名和平均成绩:
%hive
SELECT stu.name ,s1.bb FROM(
SELECT stu_id,AVG(score) bb FROM score GROUP BY stu_id )s1
JOIN student stu
ON stu.id=s1.stu_id
WHERE s1.bb>60

4。查询平均成绩小于60分的同学的学生编号和学生姓名和平均成绩:
– (包括有

1.上传tar包 2.解压 tar -zxvf hive-1.2.1.tar.gz 3.安装mysql数据库 推荐yum 在线安装 4.配置hive (a)配置HIVE_HOME环境变量 vi conf/hive-env.sh 配置其中的$hadoop_home (b)配置元数据库信息 vi hive-site.xml 添加如下内容: javax.jdo.option.ConnectionURL jdbc:mysql://localhost:3306/hive?createDatabaseIfNotExist=true JDBC connect string for a JDBC metastore javax.jdo.option.ConnectionDriverName com.mysql.jdbc.Driver Driver class name for a JDBC metastore javax.jdo.option.ConnectionUserName root username to use against metastore database javax.jdo.option.ConnectionPassword hadoop password to use against metastore database 5.安装hive和mysq完成后,将mysql的连接jar包拷贝到$HIVE_HOME/lib目录下 如果出现没有权限的问题,在mysql授权(在安装mysql的机器上执行) mysql -uroot -p #(执行下面的语句 *.*:所有库下的所有表 %:任何IP地址或主机都可以连接) GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'root' WITH GRANT OPTION; FLUSH PRIVILEGES; 6. Jline包版本不一致的问题,需要拷贝hive的lib目录中jline.2.12.jar的jar包替换掉hadoop中的 /home/hadoop/app/hadoop-2.6.4/share/hadoop/yarn/lib/jline-0.9.94.jar 启动hive bin/hive ---------------------------------------------------------------------------------------------------- Hive几种使用方式: 1.Hive交互shell bin/hive 2.Hive JDBC服务(参考java jdbc连接mysql) 3.hive启动为一个服务器,来对外提供服务 bin/hiveserver2 nohup bin/hiveserver2 1>/var/log/hiveserver.log 2>/var/log/hiveserver.err & 启动成功后,可以在别的节点上用beeline去连接 bin/beeline -u jdbc:hive2://mini1:10000 -n root 或者 bin/beeline ! connect jdbc:hive2://mini1:10000 4.Hive命令 hive -e ‘sql’ bin/hive -e 'select * from t_test'
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值