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

hive中多表关联

时间:2015-09-01 12:46:06      阅读:294      评论:0      收藏:0      [点我收藏+]

标签:

use noc_dpi;

CREATE table IF NOT EXISTS tmp_yym_app(appname STRING, mdn_num int, inputoctets int,outputoctet int)

row format delimited fields terminated by ‘|‘ stored as textfile 

location ‘/user/noc/private/tmp_yym_app‘; 

insert overwrite table tmp_yym_app

select tt.appname,count(distinct mdn),sum(tt.inputoctets),sum(tt.outputoctets) from 

(select t.*  from NOC_3G_APP_USER_SUMMARY  t join liming_test_mdn m on 

 t.mdn=m.mdn and m.mdn<>‘‘ and m.mdn is not null where t.dt=$appdate1

union all 

  select t.*  from NOC_4G_APP_USER_SUMMARY  t join liming_test_mdn m on 

 t.mdn=m.mdn and m.mdn<>‘‘ and m.mdn is not null where t.dt=$appdate1) tt

 group by tt.appname

hive中多表关联

标签:

原文地址:http://my.oschina.net/u/1866459/blog/499958

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