mysql实训

2018年7月11日笔记

1.新建数据库

设有一个数据库,包括四个表:学生表(student)、课程表(course)、成绩表(score)以及教师信息表(teacher)。用SQL语句创建四个表并完成相关题目。
创建学生表

create table student(
sno varchar(20) not null primary key,
sname varchar(20) not null,
ssex varchar(20) not null,
sbirthday datetime,
class varchar(20)
) engine = innodb default charset = utf8;

创建教师表

create table teacher(
tno varchar(20) not null primary key,
tname varchar(20) not null,
tsex varchar(20) not null,
tbirthday datetime,
prof varchar(20),
depart varchar(20) not null
)engine = innodb default charset = utf8;

创建课程表

create table course(
cno varchar(20) not null primary key,
cname varchar(20) not null,
tno varchar(20) not null,
foreign key(tno) references teacher(tno)
) engine = innodb default charset = utf8;

创建成绩表

create table score(
sno varchar(20) not null,
foreign key(sno) references student(sno),
cno varchar(20) not null,
foreign key(cno) references course(cno)
degree decimal,
) engine = innodb default charset = utf8;

2.插入数据库

插入学生表数据

INSERT INTO STUDENT (SNO,SNAME,SSEX,SBIRTHDAY,CLASS) VALUES (108 ,'曾华' ,'男' ,'1977-09-01',95033);
INSERT INTO STUDENT (SNO,SNAME,SSEX,SBIRTHDAY,CLASS) VALUES (105 ,'匡明' ,'男' ,'1975-10-02',95031);
INSERT INTO STUDENT (SNO,SNAME,SSEX,SBIRTHDAY,CLASS) VALUES (107 ,'王丽' ,'女' ,'1976-01-23',95033);
INSERT INTO STUDENT (SNO,SNAME,SSEX,SBIRTHDAY,CLASS) VALUES (101 ,'李军' ,'男' ,'1976-02-20',95033);
INSERT INTO STUDENT (SNO,SNAME,SSEX,SBIRTHDAY,CLASS) VALUES (109 ,'王芳' ,'女' ,'1975-02-10',95031);
INSERT INTO STUDENT (SNO,SNAME,SSEX,SBIRTHDAY,CLASS) VALUES (103 ,'陆君' ,'男' ,'1974-06-03',95031);

插入教师表数据

INSERT INTO TEACHER(TNO,TNAME,TSEX,TBIRTHDAY,PROF,DEPART) VALUES (804,'李诚','男','1958-12-02','副教授','计算机系');
INSERT INTO TEACHER(TNO,TNAME,TSEX,TBIRTHDAY,PROF,DEPART) VALUES (856,'张旭','男','1969-03-12','讲师','电子工程系');
INSERT INTO TEACHER(TNO,TNAME,TSEX,TBIRTHDAY,PROF,DEPART) VALUES (825,'王萍','女','1972-05-05','助教','计算机系');
INSERT INTO TEACHER(TNO,TNAME,TSEX,TBIRTHDAY,PROF,DEPART) VALUES (831,'刘冰','女','1977-08-14','助教','电子工程系');

插入课程表数据

INSERT INTO COURSE(CNO,CNAME,TNO)VALUES ('3-105' ,'计算机导论',825);
INSERT INTO COURSE(CNO,CNAME,TNO)VALUES ('3-245' ,'操作系统' ,804);
INSERT INTO COURSE(CNO,CNAME,TNO)VALUES ('6-166' ,'数据电路' ,856);
INSERT INTO COURSE(CNO,CNAME,TNO)VALUES ('9-888' ,'高等数学' ,831);

插入成绩表数据

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

3.查询数据

1、 查询Student表中的所有记录的Sname、Ssex和Class列。

select sname,ssex,class from student;

2、 查询教师所有的单位即不重复的Depart列。

select depart from teacher group by depart;

3、 查询Student表的所有记录。

select * from student;

4、 查询Score表中成绩在60到80之间的所有记录。(between)

select * from score where degree between 60 and 80;

5、 查询Score表中成绩为85,86或88的记录。(in)

select * from score where degree in (85,86,88);

6、 查询Student表中“95031”班或性别为“女”的同学记录。

select * from student where class = '95031' or ssex = '女';

7、 以Class降序查询Student表的所有记录。

select * from student order by class desc;

8、 以Cno升序、Degree降序查询Score表的所有记录。

select * from score order by cno asc,degree desc;

9、 查询“95031”班的学生人数。

select count(*) from student where class = '95031';

10、查询Score表中的最高分的学生学号和课程号。(排序)

select sno,cno from score order by degree desc;

11、查询每门课的平均成绩。(group by)

select cname,avg(degree) from score inner join course where course.cno = score.cno group by course.cname;

12、查询Score表中至少有5名学生选修的并以3开头的课程的平均分数。(group by having)

select cno,avg(degree) from score where cno like "3%" group by cno having count(sno) >= 5;

13、查询最低分大于70,最高分小于90的Sno列。

select sno from score group by sno having max(degree) < 90 and min(degree) > 70 ;

14、查询所有学生的Sname、Cno和Degree列。

select sname,score.cno,degree from student inner join score where student.sno = score.sno;

15、查询所有学生的Sno、Cname和Degree列。

select student.sno,sname,degree from student inner join score where student.sno = score.sno;

16、查询所有学生的Sname、Cname和Degree列。

select sname,cname,degree from student inner join score,course on student.sno = score.sno and course.cno = score.cno;

17、查询“95033”班学生的平均分。(选)

select avg(degree) from student inner join score where class = '95033' and student.sno = score.sno;

18、假设使用如下命令建立了一个grade表,查询所有同学的Sno、Cno和rank列。

create table grade(low int(3),high int(3),rank varchar(20));
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;

select sno,cno,rank from score inner join grade where degree < high and degree >low;

19、查询成绩高于学号为“109”、课程号为“3-105”的成绩的所有记录。(选)

select * from score where degree > (select degree from score where sno = '109' and cno ='3-105');

20、查询和学号为108的同学同年出生的所有学生的Sno、Sname和Sbirthday列。(选)

select sno,sname,sbirthday
from student,(select year(sbirthday) as birthyear from student where sno = 108) as s1
where year(sbirthday) = s1.birthyear;

21、查询“张旭“教师任课的学生成绩。(选)

select tname,cname,sname,degree
from teacher,course,student,score
where teacher.tno = course.tno and course.cno = score.cno and score.sno = student.sno and teacher.tname = '张旭';

22、查询95033班和95031班全体学生的记录。(in)

select * from student where class in ('95033','95031');

23、查询存在有85分以上成绩的课程Cno.

select cno from score group by cno having max(degree) >= 85;

24、查询出“计算机系“教师所教课程的成绩表。(选)

select score.sno,sname,degree
from teacher,score,course,student
where teacher.tno = course.tno and course.cno = score.cno and score.sno = student.sno and teacher.depart = '计算机系';

25、查询成绩比该课程平均成绩低的同学的成绩表。(选)

select s.sno,s.cno,s.degree
from score as s,(select cno,avg(degree) as avgd from score group by cno ) as avgs
where s.cno = avgs.cno and s.degree < avgs.avgd;

26、查询所有任课教师的Tname和Depart.(选)

select tname,depart from teacher;

27、查询至少有2名男生的班号。(group by having)

select class,count(name) from student group by class having count(name) >= 2;

28、查询Student表中不姓“王”的同学记录。(not like)

select * from student where sname not like "王%";

29、查询Student表中每个学生的姓名和年龄。

select sname,2018 - year(sbirthday) as age from student;

30、查询Student表中最大和最小的Sbirthday日期值。

select max(sbirthday),min(sbirthday) from student;

31、以班号和年龄从大到小的顺序查询Student表中的全部记录。
下面两种SQL语句一样的效果,年龄大则出生日期小

select * from student order by class desc,sbirthday;
select * from student order by class desc,sbirthday asc;

32、查询“男”教师及其所上的课程。

select tname,cname from teacher,course where teacher.tno = course.tno and tsex = '男';

33、查询每一门科目最高分同学的Sno、Cno和Degree列。(选)

select sno,cno,max(degree) from score group by cno ;

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 159,117评论 4 362
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 67,328评论 1 293
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 108,839评论 0 243
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 44,007评论 0 206
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 52,384评论 3 287
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 40,629评论 1 219
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 31,880评论 2 313
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 30,593评论 0 198
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 34,313评论 1 243
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 30,575评论 2 246
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 32,066评论 1 260
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 28,392评论 2 253
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 33,052评论 3 236
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 26,082评论 0 8
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 26,844评论 0 195
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 35,662评论 2 274
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 35,575评论 2 270

推荐阅读更多精彩内容