📜  我的 sql 代码示例中的第 n 个最大值

📅  最后修改于: 2022-03-11 15:05:17.744000             🧑  作者: Mango

代码示例1
For nth maximum
select column_name from table_name where condition order by column_name desc limit N-1,1;