如何在SQL中查询最大值与最小值

2024-11-14 03:16:35
推荐回答(4个)
回答1:

select max(气温),min(气温) from 气温表;
哈哈

回答2:

查最大 select max(列) from 表
查最小 select min(列) from 表

回答3:

写出你的 日期时间 这个字段的 几个值, 看看

回答4:

select max(*) from ......