例3-1: (選擇表中的若干列) 求全體學生的學號、姓名、性別和年齡。
select sno,sname,ssex,sage from student;
例3-2: (不選擇重復行) 求選修了課程的學生學號。
select distinct sno from score;
例3-3: (選擇表中的所有列) 求全體學生的詳細信息。
select * from student;
例3-4: (使用表達式) 求全體學生的學號、姓名和出生年份。
select sno,sname,2017-sage as year_brithday from student;
例3-5: (使用列的別名) 求學生的學號和出生年份,顯示時使用別名“學號”和“出生年份”。
select sno as 學號,2017-sage as 出生年份 from student;
例3-6: (比較大小條件) 求年齡大於19歲的學生的姓名和年齡。
select sname,sdept,sage from student where sage > 19;
例3-7: (比較大小條件) 求計算機系或信息系年齡大於18歲的學生的姓名、系和年齡。
select sno,sage from student where sage > 18 and sdept = 'CS';
例3-8: (確定范圍條件) 求年齡在19歲與22歲(含20歲和22歲)之間的學生的學號和年齡。
select sno,sage from student where sage between 20 and 23;//或者 select sno,sage from student where sage > 19 and sage <= 22;
例3-9: (確定范圍條件) 求年齡不在19歲與22歲之間的學生的學號和年齡。
select sno,sage from student where sage not between 20 and 23;
例3-10:(確定集合條件) 求在下列各系的學生信息:數學系、計算機系。
select * from student where sdept in ('CS','MA')order by sdept asc;
例3-11:(確定集合條件) 求不是數學系、計算機系的學生信息。
select * from student where sdept not in ('CS','MA') order by sdept asc;
例3-12:(匹配查詢) 求姓名是以“李”打頭的學生。
select * from student where sname like '李%';
例3-13:(匹配查詢) 求姓名中含有“志”的學生。
select * from student where sname like '%志%';
例3-14:(匹配查詢) 求姓名長度至少是三個漢字且倒數第三個漢字必須是“馬”的學生。
select * from student where sname like '%馬__';
出現問題,本應該顯示的數據,卻沒有被配到?
原因:在漢字馬前面會有一個空格,應該調用去空格函數rtram(sname)去掉空格就好了。
例3-15:(匹配查詢) 求選修課程001或003,成績在80至90之間,學號為96xxx的學生的學號、課程號和成績。
select sno,cno,score from score where cno in ('001','003') and (score between 80 and 90) and sno like '96___';
例3-16:(匹配查詢) 求課程名中包含 ’_’ 字符的課程號、課程名和學時數。
select cno,cname,ctime from course where cname like '%\_%' escape '\';
例3-17:(涉及空值查詢) 求缺少學習成績的學生的學號和課程號。
select sno,cno from score where score is null;
例3-18:(控制行的顯示順序) 求選修003課程或004課程的學生的學號、課程號和分數,要求按課程號升序、分數降序的順序顯示結果。
select sno, cno, score from score where cno in ('003','004') and score is not null order by cno asc,score desc;
例3-19:(組函數) 求學生總人數。
select count(*) from student;
例3-20:(組函數) 求選修了課程的學生人數。
select count(distinct sno) from score;
例3-21:(組函數) 求計算機系學生的平均年齡。
select avg(sage) from student where sdept = 'CS';
例3-22:(組函數) 求選修了課程001的最高、最低與平均成績。
select max(score), min(score), avg(score) from score where cno = '001' group by cno;
例3-23:(分組查詢) 求各門課程的平均成績與總成績。
select cno,avg(score),sum(score) from score
group by cno order by cno;
例3-24:(分組查詢) 求各系、各班級的人數和平均年齡。
select sdept,sclass,count(sno),avg(sage) from student group by sdept,sclass order by sdept,sclass asc;
例3-25:(分組查詢) 輸入以下查詢語句並執行,觀察出現的其結果並分析其原因。
SELECT SNAME,SDEPT,COUNT(*)FROM STUDENT
WHERE SDEPT=’CS’ GROUP BY SDEPT;
報錯:ORA-00979: 不是 GROUP BY 表達式
原因:select 查找的屬性必須是在group by 中包含的屬性,且只能少不能多;
例3-26:(分組查詢) 分析以下語句為什么會出現錯誤。並給出正確的查詢語句。
SELECT SAGE FROM STUDENT GROUP BY SNO;
報錯:ORA-00979: 不是 GROUP BY 表達式
原因:同上,select 查找的屬性必須是在group by 中包含的屬性,且只能少不能多;
例3-27:(分組查詢) 求學生人數不足3人的系及其相應的學生數。
select sdept ,count(sno) from student group by sdept having count(sno) < 3;
例3-28:(分組查詢) 求各系中除01班之外的各班的學生人數。
select sdept,sclass, count(sno) from student where sclass != '01' group by sdept,sclass;
例3-29:(涉及空值的查詢) 分別觀察各組函數、行的顯示順序以及分組查詢與空值的關系。
select avg(score) from score; select sum(score) from score; select max(score) from score; select min(score) from score; select count(score) from score; //count不統計空值 select score from score order by score desc; //空值作為最大值排列在第一個位置 select score from score order by score asc; //空值作為最大值排列在最后一個位置
例3-30:(連接查詢) 求選修了課程001且成績在70分以下或成績在90分以上的學生的姓名、課程名稱和成績。
select sname,cname,score from student,score,course where score.cno = '001' and (score <70 or score > 90) and student.sno = score.sno and score.cno = course.cno;
例3-31:(連接查詢與表的別名) 求選修了課程的學生的學生姓名、課程號和成績。
select sname,cno,score from student,score where student.sno in (select sno from score) and score is not null and student.sno = score.sno ;
例3-32:(自身連接查詢) 求年齡大於 ’李麗’ 的所有學生的姓名、系和年齡。
select s1.sname,s1.sdept,s1.sage from student s1,student s2 where s1.sage > s2.sage and s2.sname = '李麗';
例3-33:(外部連接查詢) 求選修了課程002或003的學生的學號、課程號、課程名和成績,要求必須將002和003課程的相關信息顯示出來。
select sno,course.cno,cname,score from score,course where course.cno in ('002','003') and score.cno = course.cno;
例3-34:(子查詢) 求與 ‘黎明’ 年齡相同的學生的姓名和系。
select sname ,sdept from student where sage in (select sage from student where sname = '黎明');
因為,有兩位同學叫黎明,在子查詢中返回多行,此時不能使用等號進行判斷,而是要用in進行判斷;
例3-35:(子查詢) 求選修了課程名為 ’數據結構’ 的學生的學號和姓名。
select sno,sname from student
where sno in
(select sno from score where cno in
(select cno from course where cname = '數據結構'));
例3-36:(子查詢ANY) 求比數學系中某一學生年齡大的學生的姓名和系。
select sname ,sdept from student where sage > any(select sage from student where sdept = 'MA');
例3-37:(子查詢ALL) 求比數學系中全體學生年齡大的學生的姓名和系。
select sname ,sdept from student
where sage > all(select sage from student where sdept = 'MA');
例3-38:(子查詢EXISTS) 求選修了課程004的學生的姓名和系。
select sname, sdept from student
where exists (select * from score where cno = '004' and sno = student.sno);
例3-39:(返回多列的子查詢) 求與 ‘黎明’ 同系且同齡的學生的姓名和系。
select sname, sdept, sage from student
where (sdept,sage) in (select sdept ,sage from student where sname = '黎明' ) ;
例3-40:(多個子查詢) 求與 ‘‘黎明’ 同系,且年齡大於 ‘李麗’ 的學生的信息。
select * from student
where sdept in (select sdept from student where sname = '黎明')
and sage > all (select sage from student where sname = '李麗')
and sname != '李麗';
例3-41:(子查詢中使用表連接) 求數學系中年齡相同的學生的姓名和年齡。
select sname, sage from student where sno in ( select s1.sno from student s1,student s2 where s1.sage = s2.sage and s1.sno != s2.sno and s1.sdept = s2.sdept and s1.sdept = 'MA');
例3-42:(連接或嵌套查詢) 檢索至少選修王成剛老師所授課程中一門課程的女學生姓名。
select sname from student where sno in ( select sno from score where cno in ( select cno from teach where tname = '王成剛')) and ssex = '女';
例3-43:(嵌套與分組查詢) 檢索選修某課程的學生人數多於3人的教師姓名。
select distinct tname ,cno from teach where cno in ( select cno from score group by cno having count(sno)>3);
例3-44:(集合查詢) 列出所有教師和同學的姓名和性別。
select sname ,ssex from student union select tname, tsex from teach
例3-45:(相關子查詢) 求未選修課程004的學生的姓名。
select sname from student where sno not in (select distinct sno from score where cno = '004');
例3-46:(相關子查詢) 求選修了全部課程的學生的姓名。
select sname from student where not exists ( select * from course where not exists( select * from score where sno = student.sno and cno = course.cno));
例3-47:(相關子查詢) 求至少選修了學生 ‘96002’ 所選修的全部課程的學生的學號。
select sno from score sc1 where not exists( select * from score sc2 where sc2.sno = '96002' and not exists( select * from score sc3 where sno = sc1.sno and cno = sc2.cno));
例3-48:(相關子查詢) 求成績比所選修課程平均成績高的學生的學號、課程號、和成績。
select sno, score.cno, score from score ,(select cno ,avg(score) as av from score group by cno)avgs where score > av and score.cno = avgs.cno ;
例3-49:(相關子查詢) 查詢被一個以上的學生選修的課程號。
select cno from (select cno ,count(sno)as cou from score group by cno) count_c where cou > 1 order by cno asc;
例3-50:(相關子查詢) 查詢所有未選課程的學生姓名和所在系。
select sname ,sdept from student where not exists ( select * from score where student.sno = score.sno);
歡迎大家評論,共同學習,共同進步;
