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 is mySQL. Is there any specific qualification required to do this course ? What is the scope in India after doing mySQL

0 Answers  


What is mysqli_num?

0 Answers  


How to create triggers in MySQL?

1 Answers  


How to rename an existing column in a table?

0 Answers  


What is difference between mysql and mysql workbench?

0 Answers  






What is int unsigned?

0 Answers  


Can you tell the reasons for selecting lamp(linux, apache, mysql, php) instead of any other combination of software programs, servers, and operating system?

0 Answers  


How do I truncate all tables in mysql?

0 Answers  


Consider you have the following three tables which have to be linked together.

0 Answers  


Is mysql open source?

0 Answers  


What is bdb (berkeleydb)?

0 Answers  


What is default password for mysql?

0 Answers  


Categories