Answers for "nth max in my sql"

SQL
0

nth max in my sql

For nth maximum
select column_name from table_name where condition order by column_name desc limit N-1,1;
Posted by: Guest on May-29-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language