求總成績和排名的SQL語句

2024-12-16 04:15:15 字數 2022 閱讀 2732

1樓:網友

select

a.姓名,sum( as sumscore fromselect 姓名, 數學 as score from tableunion all

select 姓名, 語文 as score from tableunion all

select 姓名, 英語 as score from table) a

group by a.姓名 order by sumscore desc

2樓:都槐汗運盛

select

學生。學號。

as姓名,sum(成績。分數)as總分。

from學生。

leftjoin成績。on

成績。學號=學生。學號。

groupby

學生。學號。

3樓:網友

select 姓名,數學+語文+英語 from 表 order by 數學+語文+英語。

4樓:竇晉聊昆卉

姓名,sum(a,英語。

asscore

fromtable)

agroup

assumscore

fromselect

姓名,數學。

asscore

fromtable

unionall

select

姓名,語文。

asscore

fromtable

unionall

select

姓名selecta

5樓:勇哥和嫻妹

超簡單。select 姓名,數學+語文+英語 as 總成績 from 表 order by 數學+語文+英語 desc

查詢各門課的分數最高者的sql語句

6樓:

摘要。親親您好,很高興為您解答<>

親親查詢各門課的分數最高者的sql語句如下查詢各科成績最高和最低分 select 課程號, max(成績)as 最高分 from score group by 課程號;查詢每門課程被選修的學生數 select 課程號, count(distinct 學號)as 學生數 from score group by 課程號希望本次服務能幫到您,您可以點選我的頭像關注我,後續有問題方便再次向我諮詢,期待能再次為您服務。祝您;生活愉快,一切順利[溫暖][溫暖]

查詢各門課的分數最高者的sql語句。

親親您好,很高興為您解答<>

親親查詢各門課的分數最高者的sql語句如下查詢各科成績最高和最低分 select 課程號, max(成績)as 最高分 from score group by 課程號;查詢每門課程被選修的學生數 select 課程號, count(distinct 學號)as 學生數 from score group by 課程號希望本次服務能幫到您,您可以點選我的頭像關注我,後續有問題方便再次向我諮詢,期待能再次為您服務。祝您;生活愉快,一切順利[溫暖][溫暖]

sql查詢每科最高分和人 表student,有三個欄位name、subject、score,找出某個科目的最高分和人。」

sql語句查詢排名第10的學生姓名

7樓:網友

誰設計的資料庫啊,居然設計一張數學成績表? 如果是語文,英語,難道都要設計一張表? 其他的科目可不少啊!

8樓:網友

select * from (

select rownum as r, 數學成績表。* from 數學成績表。

order by 分數 desc

aa where r=10

9樓:網友

如果是ms sql:

select *

from (

select row_number() over (order by 成績 desc) id, *

from 數學成績表。

t where id=10

sql語句求每門課程的成績都在80分以上的學生的學號

select sno from student where sno not in select sno from sc where grade 80 select distinct sno from sc where cno in select cno from course where cteac...

求做一道SQL語句題,問一道SQL語句的題目,請各位幫幫忙。

2.update user set password xyw97 where username admin 3.delete from user where usernmae temp 4.insert into user username,password values newuser newpw...

求SQL查詢語句,同一張表同一列按照不同的查詢條件,顯示不同

select 單號,case when 單號 like qw then 金額 when 單號 like th then 1 金額 else 金額 end 金額 from a select 單號,case when 單號 like qw then 1 when 單號 like th then 1 el...