mysql最大第二第三

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql最大第二第三相关的知识,希望对你有一定的参考价值。

最大值:select max(num) from table
第二大值:select max(num) from table
where num not in(select max(num) from table)
第三大值:select max(num) from table
where num not in(select max(num) from table
where num not in(select max(num) from table))
最小值:select min(num) from table

以上是关于mysql最大第二第三的主要内容,如果未能解决你的问题,请参考以下文章

关系数据库第一第二第三范式

20182327 2019-2020-1 《数据结构与面向对象程序设计》第二第三周学习总结

手机换IP的方法-PPTP

如何在 C++ 中创建字符串

MySQL学习总结之路(第三章:数据类型)

Sql Server 查询,一共三列,怎样查出第一个列值相同,第二列值最大的第三列的值?