SELECT country,city
FROM customers
GROUP BY country
ORDER BY city DESC

Answers were Sorted based on User's Feedback



SELECT country,city FROM customers GROUP BY country ORDER BY city DESC ..

Answer / prajakta

this is right coz here order by clause is at the end of
query...

Is This Answer Correct ?    21 Yes 3 No

SELECT country,city FROM customers GROUP BY country ORDER BY city DESC ..

Answer / nitin

is right or not

Is This Answer Correct ?    18 Yes 4 No

SELECT country,city FROM customers GROUP BY country ORDER BY city DESC ..

Answer / manoj pandey

This is wrong because there is no aggregate function in the
query when a group by clause is used.

The above query could be like:

1. SELECT country, count(city)
2. FROM customers
3. GROUP BY country
4. ORDER BY country DESC

* Correction at line 1 & 4.

Is This Answer Correct ?    12 Yes 9 No

SELECT country,city FROM customers GROUP BY country ORDER BY city DESC ..

Answer / rod sohrabi

It will only return 1 row per country and will display only the city that is reverse alphabetical order

Is This Answer Correct ?    3 Yes 2 No

SELECT country,city FROM customers GROUP BY country ORDER BY city DESC ..

Answer / vardhan rao

This Query will delete the duplicate values in GROUP BY clause

Is This Answer Correct ?    3 Yes 5 No

Post New Answer

More MySQL Interview Questions

What do we use to remove duplicate records while fetching a data in mysql ?

0 Answers  


How do I edit a table in mysql?

0 Answers  


What does TIMESTAMP ON UPDATE CURRENT_TIMESTAMP data type do?

1 Answers  


Query to select passwords from a table having a column "Password" Whose length is b/w 8 &15 and having 'A' as the first character in the password irrespective of case.

3 Answers  


What is the default port for mysql and how it can change?

0 Answers  






What is a mysql view?

0 Answers  


How do I restore a mysql database?

0 Answers  


How to filter data from a mysql database table with php?

0 Answers  


how many fields can be updated using set in a mysql query?

1 Answers  


What are the types of queries?

0 Answers  


What are the 5 r's of managing behaviors?

0 Answers  


what are the different tables present in mysql? : Mysql dba

0 Answers  


Categories