views:

35

answers:

2

How do I write a query to find the Nth maximum value in MySQL?

+3  A: 
aioobe
Ya thanks sir.. i got it its really handy...
Hari kanna
A: 

The Maximum Value for a Column:

SELECT MAX([column_name]) AS [alias] FROM [table_name];

Mr.Expert