码迷,mamicode.com
首页 > 其他好文 > 详细

Hive 求月销售额和总销售额

时间:2018-11-26 11:01:34      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:view   for   hive   and   pre   order   create   row   from   

求月销售额和总销售额
a,01,150
a,01,200
b,01,1000
b,01,800
c,01,250
c,01,220
b,01,6000
a,02,2000
a,02,3000
b,02,1000
b,02,1500
c,02,350
c,02,280
a,03,350
a,03,250

create table t_store(
name string comment ‘店铺‘,
months int comment ‘月份‘,
money int comment ‘金额‘
)
row format delimited fields terminated by ",";
load data local inpath "/root/t_store.txt" into table t_store;

create view v_t_store
as
select name,months,sum(money) money
from t_store
group by name,months;

select name,months,money
,sum(money) over(partition by name order by months rows between unbounded preceding and current row) as t_money
from v_t_store;

a 1 350 350
a 2 5000 5350
a 3 600 5950
b 1 7800 7800
b 2 2500 10300
c 1 470 470
c 2 630 1100

Hive 求月销售额和总销售额

标签:view   for   hive   and   pre   order   create   row   from   

原文地址:http://blog.51cto.com/6000734/2321914

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!