hive練習資料

2021-07-25 02:50:03 字數 2741 閱讀 5186

create table student(sno int,sname string,*** string,sage int,sdept string)row format delimited fields terminated by ','stored as textfile;

create table course(cno int,cname string) row format delimited fields terminated by ',' stored as textfile;

create table sc(sno int,cno int,grade int)row format delimited fields terminated by ',' stored as textfile;

load data local inpath '/home/hadoop/hivedata/students' overwrite into table student;

load data local inpath '/home/hadoop/hivedata/sc' overwrite into table sc;

load data local inpath '/home/hadoop/hivedata/course' overwrite into table course;

95001,李勇,男,20,cs

95002,劉晨,女,19,is

95003,王敏,女,22,ma

95004,張立,男,19,is

95005,**,男,18,ma

95006,孫慶,男,23,cs

95007,易思玲,女,19,ma

95008,李娜,女,18,cs

95009,夢圓圓,女,18,ma

95010,孔小濤,男,19,cs

95011,包小柏,男,18,ma

95012,孫花,女,20,cs

95013,馮偉,男,21,cs

95014,王小麗,女,19,cs

95015,王君,男,18,ma

95016,錢國,男,21,ma

95017,王風娟,女,18,is

95018,王一,女,19,is

95019,邢小麗,女,19,is

95020,趙錢,男,21,is

95021,周二,男,17,ma

95022,鄭明,男,20,ma

1,資料庫

2,數學

3,資訊系統

4,作業系統

5,資料結構

6,資料處理

95001,1,81

95001,2,85

95001,3,88

95001,4,70

95002,2,90

95002,3,80

95002,4,71

95002,5,60

95003,1,82

95003,3,90

95003,5,100

95004,1,80

95004,2,92

95004,4,91

95004,5,70

95005,1,70

95005,2,92

95005,3,99

95005,6,87

95006,1,72

95006,2,62

95006,3,100

95006,4,59

95006,5,60

95006,6,98

95007,3,68

95007,4,91

95007,5,94

95007,6,78

95008,1,98

95008,3,89

95008,6,91

95009,2,81

95009,4,89

95009,6,100

95010,2,98

95010,5,90

95010,6,80

95011,1,81

95011,2,91

95011,3,81

95011,4,86

95012,1,81

95012,3,78

95012,4,85

95012,6,98

95013,1,98

95013,2,58

95013,4,88

95013,5,93

95014,1,91

95014,2,100

95014,4,98

95015,1,91

95015,3,59

95015,4,100

95015,6,95

95016,1,92

95016,2,99

95016,4,82

95017,4,82

95017,5,100

95017,6,58

95018,1,95

95018,2,100

95018,3,67

95018,4,78

95019,1,77

95019,2,90

95019,3,91

95019,4,67

95019,5,87

95020,1,66

95020,2,99

95020,5,93

95021,2,93

95021,5,91

95021,6,99

95022,3,69

95022,4,93

95022,5,82

95022,6,100

Hive高階查詢練習01(資料 過程)

一 每個店鋪 top3 有 50w 個京東店鋪,每個顧客訪問任何乙個店鋪的任何乙個商品時,都會產生一條訪問日誌,訪問日誌儲存的表名為 visit,訪客使用者 id 為 user id,被訪問的店鋪名稱為 shop。請統計 資料 u1 a u2 b u1 b u1 a u3 c u4 b u1 a u...

Hive練習題目

hive 基本操作 1 資料自己造 a表 id int,name string b表 id int,job id int,num int c表 job id int,job string 建表語句 載入資料 a表和b表進行鏈結操作,並觀察結果 內連線 左連線 left join 小表在前,大表在後 ...

hive分析的小練習

一 題目 指標分析案例 1 需求 統計每天24小時每小時的pv和uv數 2 分析 pv count url uv count distinct guid 3 資料採集 建庫create database example 建表 源表 create table log src id string,url...