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-11-19
  • 2021-07-24
  • 2022-12-23
  • 2021-12-23
  • 2022-01-14
  • 2021-12-20
猜你喜欢
  • 2021-11-19
  • 2021-11-19
  • 2021-11-19
  • 2021-11-19
  • 2022-12-23
  • 2021-05-04
  • 2022-12-23
相关资源
相似解决方案