mysql 判断最大值,最小值,第二大,第三大 一共四个值_百度知道
最佳答案: 最大值:select max(num) from table 第二大值:select max(num) from table where num not in(select max(num) from table) 第三大值:select max...更多关于为什么mysql计算最大值最小值不准确?的问题>>
mysql求字段最大值和最小值_百度知道
[专业]答案:selectmax(字段名)fromtableNamelimit0,1最大selectmin(字段名)fromtableNamelimit0,1最小select*fromtableNameorderby字段名DESClimit0,1最大select*from...更多关于为什么mysql计算最大值最小值不准确?的问题>>
mysql判断最大值,最小值,第二大,第三大一共四个值_百度作业帮
最佳答案: 最大值:select max(num) from table第二大值:select max(num) from tablewhere num not in(select max(num) from table)第三大值:select max(num...