SELECT
FROM
STUDENT
A
LEFT
JOIN
SCORE
B
ON
A.学号=B.学号
WHERE
A.性别='女'
select score,sex,name,count(*) from table group by sex order by score descscore 分数 sex性别 name名字
---------------------------------------------------------
select score,sex,name,max(score) from table group by sex这样试试?或者你union all试试
select name,sex,score from table where sex='f' order by score desc union allselect name,sex,score from table where sex='m' order by score desc limit 2
你好,很高兴回答你的问题。解决这个问题的大致sql是:
select 性别,avg(成绩) from 表 group by 性别
如果有帮助到你,请点击采纳。
我解答的大部分是软件开发新人遇到的问题,如果有兴趣可以关注我。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)