min()函数 比如有如下数据:表名:UserInfo agenamegender 13aaa男 16bbb女 12ccc妖 SQL:select * from UserInfo where age=(select min(age) from UserInfo) 结果: agenamegender 12ccc妖 查询出最小的年龄,然后查询该人的详细信息。
十载专注成都网站制作,企业网站设计,个人网站制作服务,为大家分享网站制作知识、方案,网站设计流程、步骤,成功服务上千家企业。为您提供网站建设,网站制作,网页设计及定制高端网站建设服务,专注于企业网站设计,高端网页制作,对成都酒店设计等多个方面,拥有丰富的网站推广经验。
SELECT * FROM 表名 WHERE (球队id,总得分) IN (SELECT 球队id,MIN(总得分) FROM 表名 GROUP BY 球队id);
最大值: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