第一关:
//创建数据库test1;
CREATE DATABASE IF NOT EXISTS test1
LOCATION '/hive/test1';
//切换到test1数据库;
USE test1;
//在test1中创建相应格式的表student(未分区),分隔符为 字段为, 集合为-
CREATE TABLE IF NOT EXISTS test1.student(
Sno INT,
name STRING ,
age INT ,
sex STRING ,
score STRUCT <Chinese:FLOAT,Math:FLOAT,English:FLOAT> )
ROW FORMAT DELIMITED
FIELDS TERMINATED BY ','
COLLECTION ITEMS TERMINATED BY '-';
//将/home/student.txt的数据导入到表student中
load data local inpath '/home/student.txt' overwrite into table student;
第二关:
//切换到test2数据库;
USE test2;
//查询student表中所有的行和列;
select * from student;
//查询年龄age > 17的女生female;
select * from student where age > 17 and sex = "female";
//查询语文成绩Chinese > 90的记录;
select * from student where score.Chinese > 90 ;
//从student表中查询前3条记录;
select * from student limit 3;
//返回按年龄降序的前2条记录。
select * from student sort by age desc limit 2;
第三关:
--Begin
--使用test3数据库
use test3;
--复制student表两份,分别名为:student2、student3
CREATE TABLE IF NOT EXISTS student2
LIKE student;
CREATE TABLE IF NOT EXISTS student3
LIKE student;
--以覆盖插入的方式把student表中前两条数据插入到student2中
insert overwrite table student2
select * from student limit 2;
--评测代码,勿删
select * from student2;
--以追加插入的方式把student表中前两条数据插入到student2中
insert into table student2
select * from student limit 2;
--评测代码,勿删
select * from student2;
--以覆盖插入的方式把student表中年龄大于17岁的数据插入到student2、student3中
from student ii
insert overwrite table student2
select * where ii.age>17
insert overwrite table student3
select * where ii.age>17;
--评测代码,勿删
select * from student2;
select * from student3;
--以追加插入的方式把student表中的男生数据插入到student2,以覆盖插入的方式把女生数据插入到student3中
from student ii
insert into table student2
select * where ii.sex='male'
insert overwrite table student3
select * where ii.sex='female';
--评测代码,勿删
select * from student2;
select * from student3;
--End
第四关:
//查询student表中的前两条数据写入到本地文件/home/test4目录下
insert overwrite local directory '/home/test4'
select * from student limit 2;
//查询student表中男生的数据写入到本地文件/home/test4_1目录下,
//女生的数据写入到本地文件/home/test4_2目录下
FROM student
INSERT OVERWRITE LOCAL DIRECTORY '/home/test4_1'
SELECT * where sex='male'
INSERT OVERWRITE LOCAL DIRECTORY '/home/test4_2'
SELECT * where sex='female' ;
座右铭:站在别人的思想上,看见自己的不足,传播错误的经验,愿君不重蹈覆辙。
由于受限于本人经验,难免不足,如有建议,欢迎留言交流。
说明:如果喜欢,请点赞,您的鼓励是本人前进的最好动力。