Why Max is throwing in below query in hive for alias

0 votes

Below query is perfect and is working with other databases. When this query is run then it is throwing error in input to Max is not recognized. When this query is ran individually then it is working.

SELECT country, COUNT(country)

FROM airports GROUP BY country

HAVING COUNT (country)=(
SELECT MAX(mycount)

FROM (
SELECT country, COUNT(country) as mycount

FROM airports
GROUP BY country));
May 16, 2019 in Big Data Hadoop by Amitdeb
• 120 points
695 views

1 answer to this question.

0 votes

Hi,

You can do one thing, just enclose column name with back tick. Check it works or not.

SELECT `country`, COUNT(`country`) FROM airports GROUP BY `country` HAVING COUNT (`country`)=(SELECT MAX(`mycount`) FROM (SELECT `country`, COUNT(`country`) as `mycount` FROM airports GROUP BY `country`));

answered May 17, 2019 by reshma

Related Questions In Big Data Hadoop

0 votes
1 answer

How Impala is fast compared to Hive in terms of query response?

Impala provides faster response as it uses MPP(massively ...READ MORE

answered Mar 21, 2018 in Big Data Hadoop by nitinrawat895
• 11,380 points
1,881 views
–1 vote
1 answer

Why is Hive not good for OLTP?

Apache Hive is mainly used for batch processing i.e. ...READ MORE

answered Jan 7, 2019 in Big Data Hadoop by Omkar
• 69,210 points
5,881 views
0 votes
1 answer

Why CREATE EXTERNAL keyword is used in Hive?

Hey, The create external keyword is used to create a ...READ MORE

answered May 15, 2019 in Big Data Hadoop by Gitika
• 65,910 points
1,866 views
0 votes
1 answer

What is the syntax for creating bucketing table in hive?

Hi, Syntax for creating bucketed table is as ...READ MORE

answered May 16, 2019 in Big Data Hadoop by Gitika
• 65,910 points
1,202 views
+1 vote
1 answer

Hadoop Mapreduce word count Program

Firstly you need to understand the concept ...READ MORE

answered Mar 16, 2018 in Data Analytics by nitinrawat895
• 11,380 points
10,600 views
0 votes
1 answer

hadoop.mapred vs hadoop.mapreduce?

org.apache.hadoop.mapred is the Old API  org.apache.hadoop.mapreduce is the ...READ MORE

answered Mar 16, 2018 in Data Analytics by nitinrawat895
• 11,380 points
2,206 views
+2 votes
11 answers

hadoop fs -put command?

Hi, You can create one directory in HDFS ...READ MORE

answered Mar 16, 2018 in Big Data Hadoop by nitinrawat895
• 11,380 points
104,745 views
–1 vote
1 answer

Hadoop dfs -ls command?

In your case there is no difference ...READ MORE

answered Mar 16, 2018 in Big Data Hadoop by kurt_cobain
• 9,390 points
4,284 views
+1 vote
2 answers

Hadoop Hive: Not recognizing alias named in select part?

You can not use column aliases in ...READ MORE

answered Nov 26, 2019 in Big Data Hadoop by anonymous
10,289 views
0 votes
1 answer
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP