21用SQL語句寫出,列出成績不在60分到90分之間的學生姓名和所在專業。22用SQL語句寫出,查詢課程名

2021-07-13 09:10:52 字數 987 閱讀 8509

1樓:匿名使用者

select 姓名,專業 from table where 分數 not in (select 分數 from table where between 60 and 90 )

2樓:大閘蟹愛電影

where 成績》90 or 成績<60

sql語句查詢檢視90分以上學生的成績.課程名稱.學生姓名怎麼寫

3樓:匿名使用者

select 成績,課程名稱,姓名 from 成績,學生基本資訊,課程名稱 where學生基本資訊.學號=成績.學號 and 成績.

課程編號=課程名稱.課程編號 and 成績》90

4樓:匿名使用者

語句寫出,列出成績不在60分到90分之間的學生姓名和所在專業。 22.用sql 26.用sql 語句寫出,查詢沒有考試成績的學生學號。 21.select 姓名,

5樓:匿名使用者

select * from (

select * from (

select * from sc where score>90) s1 inner join stu st on s1.sno=st.sno) s2 inner join 課程

bai表

du c

on s2.cno=c.cno

上面查詢的列zhi

自己dao可以內

調一下。容

用sql語句寫出,查詢所有選sql課程的學生學號,姓名和專業

6樓:匿名使用者

學生表:ta

選課表: tb

select 學號, 姓名,專業

from ta

where 學號 in

(select 學號

from tb

where 課程 = 'sql')

誰能幫我寫出下面SQL語句!!急求!謝謝

你要這麼多的東西,才懸賞5分?忒扣了吧 先自己試著寫,那不會的在拿出來討論。你是不是應該先嚐試著自己把簡單的寫寫,不會的再拿出來問大家呢?大哥,這個基本已經囊括整個考勤系統所有的的表了,沒有表的設計結構資料,誰能幫你寫的出來啊,你把用的是什麼公司的考勤系統,估計有神人幫你 急求,下面的sql語句,希...

請幫忙寫出如下要求的SQL語句,萬分感謝了

select year as 年份,sum case when month 1 then value else 0 end as 一月,sum case when month 2 then value else 0 end as 二月,sum case when month 3 then value...

怎麼用sql語句查詢學生沒有選的課

select c name from course where c id not in select c id from choice where sid in select sid from stu where name 張三 把張三換成你要查的人就好了 with stu as select 1 ...