max、min函数
男生的最大、最小年龄:
select max(年龄) as 最大,max(年龄) as 最小 from 学生表 where 性别=’男’
按性别分类统计最大、最小年龄:
select 性别,max(年龄) as 最大,max(年龄) as 最小 from 学生表 group by 性别
成绩小于最高分80%清单:
select * from 成绩表 where 成绩<(select max(成绩) from 成绩表)
首页 >
max、min函数
男生的最大、最小年龄:
select max(年龄) as 最大,max(年龄) as 最小 from 学生表 where 性别=’男’
按性别分类统计最大、最小年龄:
select 性别,max(年龄) as 最大,max(年龄) as 最小 from 学生表 group by 性别
成绩小于最高分80%清单:
select * from 成绩表 where 成绩<(select max(成绩) from 成绩表)