Java教程

hive 多表连接查询并将结果存入新表

本文主要是介绍hive 多表连接查询并将结果存入新表,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
insert overwrite table table2
select d.nsr
from (select a.nsr_id as nsr
      from nsrxx a
               inner join zzsfp b
                          on b.gf_id = a.nsr_id
      group by a.nsr_id) as d
where nsr not in (select a.nsr_id
                  from nsrxx a
                           inner join zzsfp b
                                      on b.xf_id = a.nsr_id
                  group by a.nsr_id);
这篇关于hive 多表连接查询并将结果存入新表的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!