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 are the features of mysql?

0 Answers  


How can a user get the current SQL version?

2 Answers  


How do you name a table?

0 Answers  


How can you increase the performance of mysql select query?

0 Answers  


How do I automate a backup in mysql?

0 Answers  






How do I delete a mysql user?

0 Answers  


How to show all tables with 'mysql'?

0 Answers  


How do I tune a mysql query?

0 Answers  


Is mysql a dbms?

0 Answers  


What are the purposes of using enum and set data types?

0 Answers  


What is full text indexing in mysql?

0 Answers  


How do you create a new database in mysql?

0 Answers  


Categories