Hi Abishek,

I want the output as:
LHR 3
AKL 2
AWL 1

This should do it:

SELECT name, COUNT(*) as num
FROM tab_name
GROUP BY name
ORDER BY num DESC

Regards,

Jeremy

--
Jeremy Cole
MySQL Geek, Yahoo! Inc.
Desk: 408 349 5104

--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to