繁体   English   中英

比较hive表时如何计算记录的百分比?

[英]How to calculate the percentage of records when comparing hive tables?

有两个名为 table1 和 table2 的 Hive 表。 我得到了这两个表的数量。 我创建了一个名为 abc 的第三个表,其中包含来自 table1 和 table2 的不匹配记录。 如何获得表 abc 中的记录数与 table1 和 table2 的整个计数相比的百分比?

1. select count(*) from table1 A

2. select count(*) from table2 B
3. create table dbo.abc as 
   select A.column1, A.columnb from table A
   inner join table B
   where A.column3 <> B.column3

4. how to get the percentage of records in table abc? 
    for example:   count(*) from abc 
                   -------------------- *100
                   count(*) from A + B

预期输出为:

Example: 
  number_of_non_matching_records = 20%

你想在一个声明中做到这一点吗?

select count(*) as combos_in_ab,
       sum(case when a.column3 <> b.column3 then 1 else 0 end) as combos_in_3,
       avg(case when a.column3 <> b.column3 then 1.0 else 0 end) as percent_in_3
from a cross join
     b;

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM