求助這道資料庫關係代數表示式的答案

2021-03-04 07:35:38 字數 4267 閱讀 2604

1樓:匿名使用者

(1)π姓名,學號(δ課程

名='資料庫'(課程)∞選課∞學生)

(2)π姓名,學號(δ課程名='資料庫',課程名='資料結構'(課程)∞選課∞學生)

(3)π學號(δ課程名<>'資料庫'(課程)∞選課)(4)π學號(π先行課(δ課程名='資料庫'(課程))∞選課)

2樓:匿名使用者

select

from

where```

求助 這道資料庫 關係代數表示式的題目 的答案

3樓:巍科軟體

--1.檢索「吳迪」老師講授的課程號和課程名

select **o ,**ame ,teacher from c where teacher ='吳迪'

--2.檢索所有女同學和年齡小於20歲的男同學

select * from s where

s.***='男' and age <20 or s .*** ='女'

--3.檢索至少選修「吳迪」老師講授課程中一門課的學生姓名

select sname from s where sno in (select sno from sc where **o in (select **o from c where teacher ='吳迪' ))

--4.檢索「李波」同學不學的課程的課程名

select **ame from c where **o in (select **o from sc where sno not in (select sno from s where sname ='李波'))

--5.檢索至少選修兩門課程的學生的姓名

select sname from s where sno in (select sno from (select count (sno) as 's**umber',sno from sc group by sno) scs where s**umber >=2)

--6.檢索未被選修的課程的課程名

select **ame from c where **o not in (select **o from sc)

--7.檢索選修全部課程的學生的學號

select sno from s where sno in (select sno from (select count (sno) as 's**umber',sno from sc group by sno) scs where s**umber = (select count (distinct c .**ame) from c ))

--8.檢索選修了「吳迪」老師講授課程的學生的學號

select sno from s where sno in (select sno from sc where **o in (select **o from c where teacher ='吳迪'))

--9.檢索選修了「吳迪」老師講授課程且成績高於85的學生的學號sele

select sno from s where dept >85 and sno in (select sno from sc where **o in (select **o from c where teacher ='吳迪'))

--10.檢索「王虎」同學所學課程的課程號

select **o from sc where sno = (select sno from s where sname ='王虎')

--11.檢索選修了c01和c02兩門課程的學生的姓名

select sname from s where sno in ( select sc.sno from sc where sc.sno in(select sc.

sno from sc where sc.**o = (select c.**o from c where c.

**ame ='c01'))and sc.**o=(select c.**o from c where c.

**ame ='c02'))

--12.檢索未選修課程的學生的學號

select sno from s where sno not in (select sno from sc ) select * from sc

求解一道資料庫的題,用關係代數表示式

4樓:羊駟

(1) select t.tname,t.titlefrom t inner join c on t.t=c.twhere c.**ame="高等數學"

(2) select dlookup("**ame","c","c='" & sc.c & "'") as **ame

from s left join sc on s.s = sc.swhere s.sname="zhang" and sc.s is null

(3) select c.**ame, c.cfrom c inner join sc on c.

c = sc.cwhere sc.s="s2" or sc.

s="s9"

(4) select s, sname

from s

where age>20 and ***="男"

急!請大俠們指點,一道資料庫的題。寫出關係代數表示式~~非常感謝! 50

5樓:匿名使用者

關係代數的符號不好表達呀

兩者理解起來都一樣的……

很簡單的

6樓:楊力聞

1.use database_name

select s.sno,c.credit from course c join elective e

on c.con=e.con join student s

on s.sno=e.sno

where c.con='c06'

2..use database_name

select s.sname,c.sname from course c join elective e

on c.con=e.con join student s

on s.sno=e.sno

where c.con='c06'

3.select s.sname,c.sname from course c join elective e

on c.con=e.con join student s

on s.sno=e.sno

where c.**ame='english'

4..select s.sno from course c join elective e

on c.con=e.con join student s

on s.sno=e.sno

where c.**o in('c02','c06')

5...select s.sno from course c left join elective e

on c.con=e.con join student s

on s.sno=e.sno

where c.**o in('c02','c06')

6...select s.sno from course c left join elective e

on c.con=e.con join student s

on s.sno=e.sno

where c.**o not in('c02','c06')

7.select sname from student

8.select s.sno from course c left join elective e

on c.con=e.con join student s

on s.sno=e.sno

where s.sno like['s08'%]

呵呵,就這些了

求助資料庫關係代數表示式分析

7樓:匿名使用者

1,2……等數字表示連線後 關係表中的第一列,第二列

資料庫關係代數運算試題及答案

8樓:匿名使用者

var basetext3=null

function srsd()

資料庫原理習題求助~~分別用關係代數和sql語言寫一下這6個小題~~拜託萬分感謝啦~~

9樓:木_頭頭

子查詢..inner join.都可以..你自己想吧

資料庫關係代數問題,資料庫的關係代數問題

這個提問不具體,無關聯提示,是指每個要求出具sql還是綜合6條出具sql 資料庫的關係代數問題 例 設教學資料庫中有3個關係 學生關係s sno,sname,age,學習關係sc sno,o,grade 課程關係c o,ame,teacher 下面用關係代數表示式表達每個查詢語句。1 檢索學習課程號...

資料庫關係代數運算試題及答案,資料庫,關係代數習題

var basetext3 null function srsd 資料庫,關係代數習題 failed to create directorycclog asset anagerex can not create directory s n fullpath.c str unzclose zipfil...

資料庫原理關係模式分解,資料庫關係的分解原則是什麼

一,由關係r得出碼為 sno,group 二,關係r滿足第一正規化,因為關係模式中存在部分函式依賴,和傳遞函式依賴.三,看圖 這個問題很難一言以蔽之,我給你舉乙個我常用的例子,希望對你有幫助 設關係模式r u,f 中,u f r的乙個分解 試判斷 具有無損連線性。解 首先構造初始表,如圖 a 所示。...