1. 程式人生 > >sql語句練習1

sql語句練習1

建表

CREATE TABLE students
(sno VARCHAR(3) NOT NULL, 
sname VARCHAR(4) NOT NULL,
ssex VARCHAR(2) NOT NULL, 
sbirthday DATETIME,
class VARCHAR(5))

CREATE TABLE courses
(cno VARCHAR(5) NOT NULL, 
cname VARCHAR(10) NOT NULL, 
tno VARCHAR(10) NOT NULL)

CREATE TABLE scores 
(sno VARCHAR(3) NOT NULL, 
cno VARCHAR(5) NOT NULL, 
degree NUMERIC(10, 1) NOT NULL) 

CREATE TABLE teachers 
(tno VARCHAR(3) NOT NULL, 
tname VARCHAR(4) NOT NULL, tsex VARCHAR(2) NOT NULL, 
tbirthday DATETIME NOT NULL, prof VARCHAR(6), 
depart VARCHAR(10) NOT NULL)

插入資料
INSERT INTO STUDENTS (SNO,SNAME,SSEX,SBIRTHDAY,CLASS) VALUES (108 ,'曾華' ,'男' ,'1977-09-01',95033);
INSERT INTO STUDENTS (SNO,SNAME,SSEX,SBIRTHDAY,CLASS) VALUES (105 ,'匡明' ,'男' ,'1975-10-02',95031);
INSERT INTO STUDENTS (SNO,SNAME,SSEX,SBIRTHDAY,CLASS) VALUES (107 ,'王麗' ,'女' ,'1976-01-23',95033);
INSERT INTO STUDENTS (SNO,SNAME,SSEX,SBIRTHDAY,CLASS) VALUES (101 ,'李軍' ,'男' ,'1976-02-20',95033);
INSERT INTO STUDENTS (SNO,SNAME,SSEX,SBIRTHDAY,CLASS) VALUES (109 ,'王芳' ,'女' ,'1975-02-10',95031);
INSERT INTO STUDENTS (SNO,SNAME,SSEX,SBIRTHDAY,CLASS) VALUES (103 ,'陸君' ,'男' ,'1974-06-03',95031);

INSERT INTO COURSES(CNO,CNAME,TNO)VALUES ('3-105' ,'計算機導論',825);
INSERT INTO COURSES(CNO,CNAME,TNO)VALUES ('3-245' ,'作業系統' ,804);
INSERT INTO COURSES(CNO,CNAME,TNO)VALUES ('6-166' ,'資料電路' ,856);
INSERT INTO COURSES(CNO,CNAME,TNO)VALUES ('9-888' ,'高等數學' ,100);

INSERT INTO SCORES(SNO,CNO,DEGREE)VALUES (103,'3-245',86);
INSERT INTO SCORES(SNO,CNO,DEGREE)VALUES (105,'3-245',75);
INSERT INTO SCORES(SNO,CNO,DEGREE)VALUES (109,'3-245',68);
INSERT INTO SCORES(SNO,CNO,DEGREE)VALUES (103,'3-105',92);
INSERT INTO SCORES(SNO,CNO,DEGREE)VALUES (105,'3-105',88);
INSERT INTO SCORES(SNO,CNO,DEGREE)VALUES (109,'3-105',76);
INSERT INTO SCORES(SNO,CNO,DEGREE)VALUES (101,'3-105',64);
INSERT INTO SCORES(SNO,CNO,DEGREE)VALUES (107,'3-105',91);
INSERT INTO SCORES(SNO,CNO,DEGREE)VALUES (108,'3-105',78);
INSERT INTO SCORES(SNO,CNO,DEGREE)VALUES (101,'6-166',85);
INSERT INTO SCORES(SNO,CNO,DEGREE)VALUES (107,'6-106',79);
INSERT INTO SCORES(SNO,CNO,DEGREE)VALUES (108,'6-166',81);

INSERT INTO TEACHERS(TNO,TNAME,TSEX,TBIRTHDAY,PROF,DEPART) VALUES (804,'李誠','男','1958-12-02','副教授','計算機系');
INSERT INTO TEACHERS(TNO,TNAME,TSEX,TBIRTHDAY,PROF,DEPART) VALUES (856,'張旭','男','1969-03-12','講師','電子工程系');
INSERT INTO TEACHERS(TNO,TNAME,TSEX,TBIRTHDAY,PROF,DEPART) VALUES (825,'王萍','女','1972-05-05','助教','計算機系');
INSERT INTO TEACHERS(TNO,TNAME,TSEX,TBIRTHDAY,PROF,DEPART) VALUES (831,'劉冰','女','1977-08-14','助教','電子工程系');

 

問題

1、 查詢Student表中的所有記錄的Sname、Ssex和Class列。
2、 查詢教師所有的單位即不重複的Depart列。
3、 查詢Student表的所有記錄。
4、 查詢Score表中成績在60到80之間的所有記錄。
5、 查詢Score表中成績為85,86或88的記錄。
6、 查詢Student表中“95031”班或性別為“女”的同學記錄。
7、 以Class降序查詢Student表的所有記錄。
8、 以Cno升序、Degree降序查詢Score表的所有記錄。
9、 查詢“95031”班的學生人數。
10、查詢Score表中的最高分的學生學號和課程號。
11、查詢‘3-105’號課程的平均分。
12、查詢Score表中至少有5名學生選修的並以3開頭的課程的平均分數。
13、查詢最低分大於70,最高分小於90的Sno列。
14、查詢所有學生的Sname、Cno和Degree列。
15、查詢所有學生的Sno、Cname和Degree列。
16、查詢所有學生的Sname、Cname和Degree列。
17、查詢“95033”班所選課程的平均分。
18、假設使用如下命令建立了一個grade表:
create table grade(low   number(3,0),upp   number(3),rank   char(1));
insert into grade values(90,100,’A’);
insert into grade values(80,89,’B’);
insert into grade values(70,79,’C’);
insert into grade values(60,69,’D’);
insert into grade values(0,59,’E’);
commit;
現查詢所有同學的Sno、Cno和rank列。
19、查詢選修“3-105”課程的成績高於“109”號同學成績的所有同學的記錄。
20、查詢score中選學一門以上課程的同學中分數為非最高分成績的記錄。
21、查詢成績高於學號為“109”、課程號為“3-105”的成績的所有記錄。
22、查詢和學號為108的同學同年出生的所有學生的Sno、Sname和Sbirthday列。
23、查詢“張旭“教師任課的學生成績。
24、查詢選修某課程的同學人數多於5人的教師姓名。
25、查詢95033班和95031班全體學生的記錄。
26、查詢存在有85分以上成績的課程Cno.
27、查詢出“計算機系“教師所教課程的成績表。
28、查詢“計算機系”與“電子工程系“不同職稱的教師的Tname和Prof。
29、查詢選修編號為“3-105“課程且成績至少高於任意選修編號為“3-245”的同學的Cno、Sno和Degree,並按Degree從高到低次序排序。
30、查詢選修編號為“3-105”且成績高於所有選修編號為“3-245”課程的同學的Cno、Sno和Degree.
31、查詢所有教師和同學的name、sex和birthday.
32、查詢所有“女”教師和“女”同學的name、sex和birthday.
33、查詢成績比該課程平均成績低的同學的成績表。
34、查詢所有任課教師的Tname和Depart.
35  查詢所有未講課的教師的Tname和Depart. 
36、查詢至少有2名男生的班號。
37、查詢Student表中不姓“王”的同學記錄。
38、查詢Student表中每個學生的姓名和年齡。
39、查詢Student表中最大和最小的Sbirthday日期值。
40、以班號和年齡從大到小的順序查詢Student表中的全部記錄。
41、查詢“男”教師及其所上的課程。
42、查詢最高分同學的Sno、Cno和Degree列。
43、查詢和“李軍”同性別的所有同學的Sname.
44、查詢和“李軍”同性別並同班的同學Sname.
45、查詢所有選修“計算機導論”課程的“男”同學的成績表

 

參考答案

1、 查詢Student表中的所有記錄的Sname、Ssex和Class列。
select sname,ssex,class from students;

2、 查詢教師所有的單位即不重複的Depart列。
select distinct depart from teachers;

3、 查詢Student表的所有記錄。
select * from students;

4、 查詢Scores表中成績在60到80之間的所有記錄。
select * from scores where degree between 60 and 80;

5、 查詢Score表中成績為85,86或88的記錄。
select * from scores where degree in (85,86,88);

6、 查詢Student表中“95031”班或性別為“女”的同學記錄。
select * from students where  class='95031' or ssex='女';

7、 以Class降序查詢Student表的所有記錄。
select * from students order by class desc;

8、 以Cno升序、Degree降序查詢Scores表的所有記錄。
select * from scores order by cno asc,degree desc;

9、 查詢“95031”班的學生人數。
select class '班級',count(*) '學生人數' from students where class='95031';

10、查詢Score表中的最高分的學生學號和課程號。
select sno,cno from scores order by degree desc limit 1;

11、查詢‘3-105’號課程的平均分。
select avg(degree) from scores where cno ='3-105';

12、查詢Scores表中至少有5名學生選修的並以3開頭的課程的平均分數。
select cno,avg(degree) from scores group by cno  having count(sno)>5 and cno like '3%';

13、查詢最低分大於70,最高分小於90的Sno列。
select sno from scores group by sno having min(degree)>70 and max(degree)<90 ;

14、查詢所有學生的Sname、Cno和Degree列。
select stu.sname,sco.cno,sco.degree from students stu left join scores sco on stu.sno=sco.sno;

15、查詢所有學生的Sno、Cname和Degree列。
select stu.sname, stu.sno,c.cname,sco.degree from students stu left join  scores sco on stu.sno=sco.sno left join courses c on sco.cno=c.cno ;

16、查詢所有學生的Sname、Cname和Degree列。
SELECT
    stu.sname,
    cou.cname,
    sco.degree 
FROM
    scores sco
    LEFT JOIN courses cou ON sco.cno = cou.cno
    LEFT JOIN students stu ON stu.sno = sco.sno;


17、查詢“95033”班所選課程的平均分。
select cou.cname,sco.cno,avg(sco.degree) from students stu left join scores sco on stu.sno=sco.sno left join courses cou on cou.cno=sco.cno where stu.class='95033' group by sco.cno;

18、假設使用如下命令建立了一個grade表:
create table grade(low   number(3,0),upp   number(3),rank   char(1));
insert into grade values(90,100,’A’);
insert into grade values(80,89,’B’);
insert into grade values(70,79,’C’);
insert into grade values(60,69,’D’);
insert into grade values(0,59,’E’);
commit;
現查詢所有同學的Sno、Cno和rank列。
19、查詢選修“3-105”課程的成績高於“109”號同學成績的所有同學的記錄。
SELECT s1.Sno,s1.Degree
FROM Scores AS s1 INNER JOIN Scores AS s2
ON(s1.Cno=s2.Cno AND s1.Degree>s2.Degree)
WHERE s1.Cno='3-105' AND s2.Sno='109'
ORDER BY s1.Sno;


20、查詢scores中選學一門以上課程的同學中分數為非最高分成績的記錄。
select * from scores group by sno having count(sno)>1 and degree!=max(degree);

21、查詢成績高於學號為“109”、課程號為“3-105”的成績的所有記錄。
select * from scores where degree>(select degree from scores where sno='109' and cno='3-105');

22、查詢和學號為108的同學同年出生的所有學生的Sno、Sname和Sbirthday列。
select * from students where sbirthday like concat( (select year(sbirthday) from students where sno='108'),'%');

23、查詢“張旭“教師任課的學生成績。
select sco.sno,sco.degree from teachers t left join courses cou on t.tno=cou.tno left join scores sco on sco.cno=cou.cno
where t.tname='張旭';

24、查詢選修某課程的同學人數多於5人的教師姓名
select t.tname from teachers t left join courses cou on cou.tno=t.tno left join scores sco on sco.cno=cou.cno group by sco.cno having count(sco.cno)>5 

25、查詢95033班和95031班全體學生的記錄。
select stu.*,cou.cname,t.tname from students stu left join scores sco on sco.sno=stu.sno left join courses cou on cou.cno=sco.cno left join teachers t on t.tno=cou.tno;

26、查詢存在有85分以上成績的課程Cno.
select distinct cou.cname from scores sco left join courses cou on sco.cno=cou.cno where sco.degree>85;

27、查詢出“計算機系“教師所教課程的成績表。
select cou.cname,sco.degree from teachers t left join courses cou on t.tno=cou.tno left join scores sco on cou.cno=sco.cno where t.depart='計算機系';


28、查詢“計算機系”與“電子工程系“不同職稱的教師的Tname和Prof。
select tname,prof from teachers where depart='計算機系' and depart not in (select distinct prof from teachers where depart='電子工程系');


29、查詢選修編號為“3-105“課程且成績至少高於任意選修編號為“3-245”的同學的Cno、Sno和Degree,並按Degree從高到低次序排序。
select cno,sno, degree from scores where  cno='3-105' and degree> (select min(degree) from scores where cno='3-245') order by degree desc;

30、查詢選修編號為“3-105”且成績高於所有選修編號為“3-245”課程的同學的Cno、Sno和Degree.
select cno,sno, degree from scores where  cno='3-105' and degree> (select max(degree) from scores where cno='3-245') order by degree desc;

31、查詢所有教師和同學的name、sex和birthday.
(select tname `name`,tsex sex,tbirthday birthday from teachers)
union all
(select sname `name`,ssex sex,sbirthday birthday from students);

32、查詢所有“女”教師和“女”同學的name、sex和birthday.
(select tname `name`,tsex sex,tbirthday birthday from teachers where tsex='女')
union all
(select sname `name`,ssex sex,sbirthday birthday from students where ssex='女');

33、查詢成績比該課程平均成績低的同學的成績表。
select sco1.cno, sco1.degree from scores sco1  left join  ( select cno ,avg(degree) degree from scores group by cno) sco2 on sco1.cno=sco2.cno where sco1.degree<sco2.degree ;

34、查詢所有任課教師的Tname和Depart.
select t.tname,t.depart from teachers t inner join courses cou on t.tno=cou.tno;
select t.tname,t.depart from teachers t where t.tno  in (select tno from courses );

35  查詢所有未講課的教師的Tname和Depart. select t.tname,t.depart from teachers t where t.tno not in (select tno from courses );

36、查詢至少有2名男生的班號。
select class,count(1) from students where ssex='男' group by class having count(1) >=2 ;

37、查詢Student表中不姓“王”的同學記錄。
select * from students where sname not like '王%';

38、查詢Student表中每個學生的姓名和年齡。
select sname,(YEAR(CURRENT_DATE) -year(sbirthday)) age from students ;

39、查詢Student表中最大和最小的Sbirthday日期值。
 select max(sbirthday),min(sbirthday) from students;
 
40、以班號和年齡從大到小的順序查詢Student表中的全部記錄。
select * from students order by class desc,sbirthday desc;

41、查詢“男”教師及其所上的課程。
select t.tname,cou.cname from teachers t left join courses cou on t.tno=cou.tno where t.tsex='男';

42、查詢最高分同學的Sno、Cno和Degree列。
select * from scores where degree=(select max(degree) from scores);

43、查詢和“李軍”同性別的所有同學的Sname.
select sname from students where ssex=(select ssex from students where sname='李軍');
select s1.sname from students s1 left join students s2 on s1.ssex=s2.ssex where s2.sname='李軍';

44、查詢和“李軍”同性別並同班的同學Sname.
select sname from students where ssex=(select ssex from students where sname='李軍') and class=(select class from students where sname='李軍');

45、查詢所有選修“計算機導論”課程的“男”同學的成績表
select cou.cname,sco.degree,stu.sname,stu.ssex from courses cou left join scores sco on cou.cno=sco.cno left join students stu on stu.sno=sco.sno where stu.ssex='男' and cou.cname='計算機導論';