码迷,mamicode.com
首页 > 数据库 > 详细

mysql最大、第二、第三

时间:2016-02-29 21:43:53      阅读:227      评论:0      收藏:0      [点我收藏+]

标签:

最大值: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最大、第二、第三

标签:

原文地址:http://www.cnblogs.com/yangzhouyyz/p/5228801.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!