Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
429 views
in Technique[技术] by (71.8m points)

hiveql - How to get average of all numbers (not a group) in hive?

I have a table, and I wish to add a column which is the average of all lines (not by group).

For example, the table is like:

  name    num
   a      1
   b      2

I wish to get:

  name    num   avg_num
   a      1     1.5
   b      2     1.5

I tried this:

select name, num, avg(num) 
from table 
group by name, num

However, it returns

  name    num   avg_num
   a      1     1
   b      2     2

So how can I achieve my goal?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can specify an empty window (which covers the whole table)

select name, num, avg(num) over() as avg_num from table;

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.8k users

...