meimei00

最大值: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

分类:

技术点:

相关文章:

  • 2021-04-12
  • 2021-11-19
  • 2021-11-19
  • 2021-11-19
  • 2021-12-12
  • 2021-11-19
  • 2021-05-17
猜你喜欢
  • 2021-11-19
  • 2021-11-19
  • 2021-11-19
  • 2021-11-19
  • 2021-05-04
  • 2021-11-19
  • 2021-07-24
相关资源
相似解决方案