(一)查詢出排序中的最大值和最小值

兩種方法:

  1.  使用max或者min函數

select max(age),min(age) from user2; 

結果:函數

 

  2.  使用order by 和limit 結合使用

  • 取最大值
select age from user2 order by age desc limit 1;

 

  •  取最小值
select age from user2 order by age  limit 1;

 

相關文章
相關標籤/搜索