1樓:羊駟
(1) select t.tname,t.titlefrom t inner join c on t.t=c.twhere c.cname="高等數學"
(2) select dlookup("cname","c","c='" & sc.c & "'") as cname
from s left join sc on s.s = sc.swhere s.sname="zhang" and sc.s is null
(3) select c.cname, 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 ***="男"
求助 這道資料庫 關係代數表示式的題目 的答案
2樓:巍科軟體
--1.檢索「吳迪」老師講授的課程號和課程名
select cno ,cname ,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 cno in (select cno from c where teacher ='吳迪' ))
--4.檢索「李波」同學不學的課程的課程名
select cname from c where cno in (select cno 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 'scnumber',sno from sc group by sno) scs where scnumber >=2)
--6.檢索未被選修的課程的課程名
select cname from c where cno not in (select cno from sc)
--7.檢索選修全部課程的學生的學號
select sno from s where sno in (select sno from (select count (sno) as 'scnumber',sno from sc group by sno) scs where scnumber = (select count (distinct c .cname) from c ))
--8.檢索選修了「吳迪」老師講授課程的學生的學號
select sno from s where sno in (select sno from sc where cno in (select cno from c where teacher ='吳迪'))
--9.檢索選修了「吳迪」老師講授課程且成績高於85的學生的學號sele
select sno from s where dept >85 and sno in (select sno from sc where cno in (select cno from c where teacher ='吳迪'))
--10.檢索「王虎」同學所學課程的課程號
select cno 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.cno = (select c.cno from c where c.
cname ='c01'))and sc.cno=(select c.cno from c where c.
cname ='c02'))
--12.檢索未選修課程的學生的學號
select sno from s where sno not in (select sno from sc ) select * from sc
資料庫關係代數運算問題,資料庫關係代數運算問題
1 並 兩個關係需有相同的關係模式,並的物件是元組,由兩個關係所有元組構成。rus 2 差 答 同樣,兩個關係有相同的模式,r和s的差是由屬於r但不屬於s的元組構成的集合。r s 3 笛卡爾積 對兩個關係r和s進行操作,產生的關係中元組個數為兩個關係中元組個數之積。r s 4 投影 對關係進行垂直分...
描述關係代數與資料庫查詢語言的關係
第一類是用對關係的運算來表達查詢的方式,稱為關係代數。第二類是用謂詞來表達查詢要求的方式稱為關係演算。關係演算又可按謂詞變元的基本物件是元組變數還是域變數分為元組關係演算和域關係演算兩種。這三種運算在表達能力上可互相轉換。實際的查詢語言要求能提供其中任何一種語言所能實現的功能。但實際上有些資料庫語言...
跪求資料庫原理及應用題目解答
1資料庫系統的基本概念 資料 實際上就是描述事物的符號記錄。資料的特點 有一定的結構,有型與值之分,如整型 實型 字元型等。而資料的值給出了符合定型的值,如整型值15。資料庫 是資料的集合,具有統一的結構形式並存放於統一的儲存介質內,是多種應用資料的整合,並可被各個應用程式共享。資料庫存放資料是按資...