求几个简单的SQL单表分组查询语句
比如一张表:ID年级姓名性别分数(ID分数int其余Varchar)01小张男6011小王男7021小红女8032小李男7542小兰女7251小花女83求1年级男生里分数...
比如一张表:
ID 年级 姓名 性别 分数 (ID 分数 int 其余Varchar)
0 1 小张 男 60
1 1 小王 男 70
2 1 小红 女 80
3 2 小李 男 75
4 2 小兰 女 72
5 1 小花 女 83
求1年级男生里分数最高者的所有列信息;
求1年级里分数最高者所有列信息;
求全校成绩最高的女生的所有列信息;
求每个年级成绩最高者的所有列信息。 展开
ID 年级 姓名 性别 分数 (ID 分数 int 其余Varchar)
0 1 小张 男 60
1 1 小王 男 70
2 1 小红 女 80
3 2 小李 男 75
4 2 小兰 女 72
5 1 小花 女 83
求1年级男生里分数最高者的所有列信息;
求1年级里分数最高者所有列信息;
求全校成绩最高的女生的所有列信息;
求每个年级成绩最高者的所有列信息。 展开
4个回答
展开全部
如果最高分不只一个呢.....
select * from Result where grade=1 and gender='男' and score = (select max(score) from result);
select * from Result where grade=1 and score=(select max(score) from Result);
select * from Result where gender='女'and score=(select max(score) from Result);
select * from Result where score in (select max(score) from Result group by grade);
注:
grade 年级
name 姓名
gender 性别
score 分数
谁用谁知道!
select * from Result where grade=1 and gender='男' and score = (select max(score) from result);
select * from Result where grade=1 and score=(select max(score) from Result);
select * from Result where gender='女'and score=(select max(score) from Result);
select * from Result where score in (select max(score) from Result group by grade);
注:
grade 年级
name 姓名
gender 性别
score 分数
谁用谁知道!
展开全部
求1年级男生里分数最高者的所有列信息;
select top 1 * from 表 where 年级=1 and 性别='男' order by 分数 desc
求1年级里分数最高者所有列信息
select top 1 * from 表 where 年级=1 order by 分数 desc
求全校成绩最高的女生的所有列信息
select top 1 * from 表 where 性别='女' order by 分数 desc
求每个年级成绩最高者的所有列信息
这个,等我想想先。。
select top 1 * from 表 where 年级=1 and 性别='男' order by 分数 desc
求1年级里分数最高者所有列信息
select top 1 * from 表 where 年级=1 order by 分数 desc
求全校成绩最高的女生的所有列信息
select top 1 * from 表 where 性别='女' order by 分数 desc
求每个年级成绩最高者的所有列信息
这个,等我想想先。。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select * from table
where 分数 in (select max(分数) from table where 性别=男
AND 年纪=1) AND 性别=男 AND 年纪=1
select * from table
where 分数 in (select max(分数) from table where 年纪=1) AND 年纪=1
select * from table
where 分数 in (select max(分数) from table where 性别=女) AND 性别=女
不能用TOP 1吧 考试有同分的情况啊。。TOP 1不是只出一条?
where 分数 in (select max(分数) from table where 性别=男
AND 年纪=1) AND 性别=男 AND 年纪=1
select * from table
where 分数 in (select max(分数) from table where 年纪=1) AND 年纪=1
select * from table
where 分数 in (select max(分数) from table where 性别=女) AND 性别=女
不能用TOP 1吧 考试有同分的情况啊。。TOP 1不是只出一条?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select top 1 * from 表 where 年级="1" and 性别="男" order by 分数 desc
select top 1 * from 表 where 年级="1" order by 分数 desc
select top 1 * from 表 where 性别="女" order by 分数 desc
脑袋 智障了..
第4句
select * from 表 where id in(select min(id),max(分数) from 表 group by 年级)
select top 1 * from 表 where 年级="1" order by 分数 desc
select top 1 * from 表 where 性别="女" order by 分数 desc
脑袋 智障了..
第4句
select * from 表 where id in(select min(id),max(分数) from 表 group by 年级)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询