請教一道資料庫的題目,急!請教一道資料庫考題

時間 2021-10-14 19:02:55

1樓:

select student.sid from (select sid,score from sc where cid=1)student ,(select sid,score from sc where cid=2)score

where student.score>score.score and student.sid=score.sid

select student.sid

from ( select sid ,

score

from sc

where cid = 1

) student , --查詢出課程一的成績

( select sid ,

score

from sc

where cid = 2

) score --查詢出課程二的成績

where student.score > score.score --查詢出課程一比課程二高的成績學生id

and student.sid = score.sid; --同一個學生

2樓:匿名使用者

select  s1.[sid]

from [sc] s1

inner join [sc] s2 on s1.[sid] = s2.[sid] and s2.

cid = 'a02'  and s1.score > s2.score and s1.

cid = 'a01'

急!請教一道資料庫考題

3樓:匿名使用者

1.select 課程.課程名稱,課程.

任課老師 from 學生inner join 成績 on 學生.學號=成績.學號inner join 課程 on 成績.

課程號=課程.課程號where 學生.學號='s3'

2.select 課程號,課程名稱 from 課程 where 任課老師='liu老師'

3.select distinct 學生.姓名 from 學生inner join 成績 on 學生.

學號=成績.學號inner join 課程 on 成績.課程號=課程.

課程號where 學生.性別='女' and 課程.任課老師='liu老師'

4.select 學號,姓名,班級 from 學生where 學號 not in (select 學號 from 成績)

4樓:龍龍

《資料庫系統原理及應用教程》這本書上102頁,參照一下就能寫出來了。自己看看吧

一道關於資料庫的題目

sql資料庫一道題, SQL 資料庫,一道題

1create table 學生 學號 char 9 not null primary key,姓名 varchar 20 not null,性別 char 2 check 性別 男 or 性別 女 年齡 int,專業 varchar 20 2update 課程 set 課程名 sql資料庫 whe...

一道化學請教,急,一道化學請教,急

三象定盤 高考題中守恆法應用列舉 江蘇省江陰市青陽高階中學 214401 胡先錦 化學反應中存在著一系列的守恆關係,它是化學解題中的一把 金鑰匙 如質量守恆 電子轉移守恆 電荷守恆等。抓住這些守恆關係,將其運用於化學計算,常會使一些化學計算題迅速求解,達到事半功倍的效果。現羅舉數例,加以說明。一 電...

請教一道C語言題目,求解一道C語言題目

呵呵 這個 容易啊 就是個 強制型別轉換的意思。首先 long 型別 佔 四個位元組。char 型別 佔 一個位元組。明白了這個 就好解決了。char p abcdefgh r long q 這兩行 標明 p是指向字元的指標 並且 指向abcdefgh這個字串 實際是指向a r 為指向字元的指標。q...