python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
hiveQL query select classID, studName from table1 where grade = Max(grade) group by classID, studName;
Sorry for writing an obvious bad query in subject but it accurately describes the result I am looking for.
I have a table with classID int, studName string, grade int. I need a result that lists each ...
swade77
Votes: 0
Answers: 1
What does gradle classifier: 'core'?
I had conflict with the protobuf dependency of hive and another package that depends on protobuf. I solved the problem with "classifier: 'core'":
implementation group: 'org.apache.hive', nam...

Paulo Moreira
Votes: 0
Answers: 1
Hive GROUP BY optimization based on cardinality
Logically cardinality of columns should matter while doing GROUP BY operation. When we write Hive queries involving GROUP BY, since we are familiar with the data being queried, we have an idea about c...
Dhiraj
Votes: 0
Answers: 0