当前位置:   article > 正文

MySQL 学生表(Student)、课程表(Course)、成绩表(Score)以及教师信息表(Teacher)_数据库学生表、课程表和成绩表

数据库学生表、课程表和成绩表

设有一数据库,包括四个表:学生表(Student)、课程表(Course)、成绩表(Score)以及教师信息表(Teacher)。四个表的结构分别如表1-1的表(一)~表(四)所示,数据如表1-2的表(一)~表(四)所示。用SQL语句创建四个表并完成相关题目。

 

  1-1数据库的表结构

表(一)Student (学生表)                        

字段名

数据类型

可否为空

含 义

Sno

Varchar2(3)

学号(主键)

Sname

Varchar2(8)

学生姓名

Ssex

Varchar2(2)

学生性别

Sbirthday

Date

学生出生年月

SClass

Varchar2(5)

学生所在班级

表(二)Course(课程表)

属性名

数据类型

可否为空

含 义

Cno

Varchar2(5)

课程号(主键)

Cname

Varchar(10)

课程名称

Tno

Varchar2(3)

教工编号(外键)

表(三)Score(成绩表)

属性名

数据类型

可否为空

含 义

Sno

Varchar2(3)

学号(外键)

Cno

Varchar2(5)

课程号(外键)

Degree

Number(4,1)

成绩

主键:Sno+ Cno

表(四)Teacher(教师表)

属性名

数据类型

可否为空

含 义

Tno

Varchar2(3)

教工编号(主键)

Tname

Varchar2(4)

教工姓名

Tsex

Varchar2(2)

教工性别

Tbirthday

Date

教工出生年月

Prof

Varchar2(6)

职称

Depart

Varchar(10)

教工所在部门

1-2数据库中的数据

表(一)Student

 

Sno

Sname

Ssex

Sbirthday

class

 

108

曾华

1977/09/01

95033

 

105

匡明

1975/10/02

95031

 

107

王丽

1976/01/23

95033

 

101

李军

1976/02/20

95033

 

109

王芳

1975/02/10

95031

 

103

陆君

1974/06/03

95031

 

表(二)Course

 

Cno

Cname

Tno

 

3-105

计算机导论

825

 

3-245

操作系统

804

 

6-166

数字电路

856

 

9-888

高等数学

831

表(三)Score

 SnoCnoDegree
 1033-24586
 1053-24575
 1093-24568
 1033-10592
 1053-10588
 1093-10576
 1013-10564
 1073-10591
 1083-10578
 1016-16685
 1076-16679
 1086-16681


表(四)Teacher

 

Tno

Tname

Tsex

Tbirthday

Prof

Depart

 

804

李诚

1958/12/02

副教授

计算机系

 

856

张旭

1969/03/12

讲师

电子工程系

 

825

王萍

1972/05/05

助教

计算机系

 

831

刘冰

1977/08/14

助教

电子工程系

 

 

建表sql:

  1. create DATABASE testdb;
  2. use testdb;
  3. DROP TABLE IF EXISTS `Course`;
  4. CREATE TABLE `Course` (
  5. `Cno` varchar(5) NOT NULL,
  6. `Cname` varchar(10) NOT NULL,
  7. `Tno` varchar(3) NOT NULL,
  8. PRIMARY KEY (`Cno`),
  9. KEY `Tno` (`Tno`),
  10. CONSTRAINT `Course_ibfk_1` FOREIGN KEY (`Tno`) REFERENCES `Teacher` (`Tno`)
  11. ) ENGINE = InnoDB CHARSET = utf8;
  12. INSERT INTO `Course` (`Cno`, `Cname`, `Tno`)
  13. VALUES ('3-105', '计算机导论', '825'),
  14. ('3-245', '操作系统', '804'),
  15. ('6-166', '数字电路', '856'),
  16. ('9-888', '高等数学', '831');
  17. /*Table structure for table `Score` */
  18. DROP TABLE IF EXISTS `Score`;
  19. CREATE TABLE `Score` (
  20. `Sno` varchar(3) NOT NULL,
  21. `Cno` varchar(5) NOT NULL,
  22. `Degree` decimal(4, 1) DEFAULT NULL,
  23. PRIMARY KEY (`Sno`, `Cno`),
  24. KEY `Cno` (`Cno`),
  25. CONSTRAINT `Score_ibfk_1` FOREIGN KEY (`Sno`) REFERENCES `Student` (`Sno`),
  26. CONSTRAINT `Score_ibfk_2` FOREIGN KEY (`Cno`) REFERENCES `Course` (`Cno`)
  27. ) ENGINE = InnoDB CHARSET = utf8;
  28. INSERT INTO `Score` (`Sno`, `Cno`, `Degree`)
  29. VALUES ('101', '3-105', '64.0'),
  30. ('101', '6-166', '85.0'),
  31. ('103', '3-105', '92.0'),
  32. ('103', '3-245', '86.0'),
  33. ('105', '3-105', '88.0'),
  34. ('105', '3-245', '75.0'),
  35. ('107', '3-105', '91.0'),
  36. ('107', '6-166', '79.0'),
  37. ('108', '3-105', '78.0'),
  38. ('108', '6-166', '81.0'),
  39. ('109', '3-105', '76.0'),
  40. ('109', '3-245', '68.0');
  41. /*Table structure for table `Student` */
  42. DROP TABLE IF EXISTS `Student`;
  43. CREATE TABLE `Student` (
  44. `Sno` varchar(3) NOT NULL,
  45. `Sname` varchar(8) NOT NULL,
  46. `Ssex` varchar(2) NOT NULL,
  47. `Sbirthday` date DEFAULT NULL,
  48. `Sclass` varchar(5) DEFAULT NULL,
  49. PRIMARY KEY (`Sno`)
  50. ) ENGINE = InnoDB CHARSET = utf8;
  51. INSERT INTO `Student` (`Sno`, `Sname`, `Ssex`, `Sbirthday`, `Sclass`)
  52. VALUES ('101', '李军', '男', '1976-02-20', '95033'),
  53. ('103', '陆君', '男', '1974-06-03', '95031'),
  54. ('105', '匡明', '男', '1975-10-02', '95031'),
  55. ('107', '王丽', '女', '1976-01-23', '95033'),
  56. ('108', '曾华', '男', '1977-09-01', '95033'),
  57. ('109', '王芳', '女', '1975-02-10', '95031');
  58. /*Table structure for table `Teacher` */
  59. DROP TABLE IF EXISTS `Teacher`;
  60. CREATE TABLE `Teacher` (
  61. `Tno` varchar(3) NOT NULL,
  62. `Tname` varchar(4) NOT NULL,
  63. `Tsex` varchar(2) NOT NULL,
  64. `Tbirthday` date DEFAULT NULL,
  65. `Tprof` varchar(6) DEFAULT NULL,
  66. `Depart` varchar(10) NOT NULL,
  67. PRIMARY KEY (`Tno`)
  68. ) ENGINE = InnoDB CHARSET = utf8;
  69. INSERT INTO `Teacher` (`Tno`, `Tname`, `Tsex`, `Tbirthday`, `Tprof`
  70. , `Depart`)
  71. VALUES ('804', '李诚', '男', '1958-12-02', '副教授', '计算机系'),
  72. ('825', '王萍', '女', '1972-05-05', '助教', '计算机系'),
  73. ('831', '刘冰', '女', '1977-08-14', '助教', '电子工程系'),
  74. ('856', '张旭', '男', '1969-03-12', '讲师', '电子工程系');
  1. select t.* from Student t;
  2. select t.* from Course t;
  3. select t.* from Teacher t;
  4. select t.* from Score t;
  5. -- 1、查询教师所有的单位即不重复的Depart列。
  6. select distinct Depart from Teacher;
  7. -- 2、查询Score表中成绩在60到80之间的所有记录。
  8. select * from Score where degree > 60 and degree < 80;
  9. select * from Score where degree between 60 and 80;
  10. -- 3、查询Score表中成绩为85,86或88的记录。
  11. select * from Score where Degree=85 or Degree=86 or degree=88;
  12. select * from Score where Degree in (85,86,88);
  13. -- 4、查询Student表中“95031”班或性别为“女”的同学记录。
  14. select * from Student where sclass=95031 or ssex='女';
  15. -- 5、以Sclass降序查询Student表的所有记录。
  16. select * from Student order by sclass desc;
  17. -- 6、以Cno升序、Degree降序查询Score表的所有记录。
  18. select * from Score order by sno asc,degree desc;
  19. -- 7、查询“95031”班的学生人数。
  20. select count(sno) 学生人数,sclass from Student where sclass = '95031';
  21. -- 8、查询Score表中的最高分的学生学号和课程号。(子查询或者排序)
  22. select t.sno,t.cno,t.degree from Score t where t.degree in (select max(degree) from Score);
  23. select sno,cno,degree from Score order by Degree desc limit 0,1;
  24. -- 9、查询每门课的平均成绩。
  25. select cno,avg(degree) from Score group by cno;
  26. -- 10、查询Score表中至少有5名学生选修的并以3开头的课程的平均分数。
  27. select cno,avg(degree) from Score where cno like '3%' group by cno having count(cno)>5;
  28. -- 11、查询所有学生的Sname、Cno和Degree列。
  29. -- 多表查询
  30. -- 可以用where,内连接,子查询
  31. -- 左连接以左表为准匹配,没有的右侧都为null:
  32. select t.sname,s.cno,s.degree from Student t,Score s where t.Sno = s.sno;
  33. select t.sname,s.cno,s.degree from Student t inner join Score s on t.sno = s.sno;
  34. select t.sname,s.cno,s.degree from Student t left join Score s on t.sno = s.sno;
  35. -- 拓展,如果条件写在on上,则把on的所有条件作为匹配条件,不符合的右表都为null。where与on的区别(没看出来啊)
  36. select t.sname,s.cno,s.degree from Student t left join Score s on t.sno = s.sno and s.cno = '3-105';
  37. select t.sname,s.cno,s.degree from Student t left join Score s on t.sno = s.sno where s.cno = '3-105';
  38. -- 12、查询所有学生的Sno、Cname和Degree列。
  39. -- 多表查询
  40. -- 可以用where,内连接,子查询
  41. select t.sno,c.cname,t.degree from Score t,Course c where t.cno = c.cno;
  42. select t.sno,c.cname,t.degree from Score t left join Course c on t.cno = c.cno;
  43. -- 13、查询所有学生的Sname、Cname和Degree列。
  44. -- 多表查询
  45. -- 可以用where,内连接,子查询
  46. select t.sname,c.cname,s.degree from Student t,Score s,Course c where t.sno = s.sno and s.cno = c.cno;
  47. select t.sname,c.cname,s.degree from Student t join Score s on t.sno = s.sno join Course c on s.cno = c.cno;
  48. select t.sname,c.cname,s.degree from Student t inner join Score s on t.Sno=s.Sno inner join Course c on s.cno = c.cno;
  49. -- 14、查询“95033”班学生的平均分。
  50. select s.sclass,avg(t.degree) from Score t,Student s where s.sno = t.sno and s.sclass='95033' ;
  51. select s.sclass,avg(t.degree) from Score t inner join Student s on s.sno = t.sno where s.sclass='95033';
  52. select avg(t.degree) from Score t where t.sno in (select s.sno from Student s where s.sclass='95033');
  53. -- 查询平均分
  54. select avg(t.degree) from Score t;
  1. -- 15、假设使用如下命令建立了一个Grade表:
  2. create table Grade(low int(3),upp int(3),rank char(1));
  3. insert into Grade values(90,100,'A');
  4. insert into Grade values(80,89,'B');
  5. insert into Grade values(70,79,'C');
  6. insert into Grade values(60,69,'D');
  7. insert into Grade values(0,59,'E');
  8. select * from Grade;

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/485821
推荐阅读
相关标签
  

闽ICP备14008679号