How do I write a query to find the Nth maximum value in MySQL?
The Maximum Value for a Column:
SELECT MAX([column_name]) AS [alias] FROM [table_name];