zoukankan      html  css  js  c++  java
  • 数据库操作示例

    通过以下SQL语言建立四个表:student,score,course和teacher表,完成以下功能:

    CREATE TABLE STUDENT

    (SNO VARCHAR(3) NOT NULL, 

    SNAME VARCHAR(4) NOT NULL,

    SSEX VARCHAR(2) NOT NULL, 

    SBIRTHDAY DATETIME,

    CLASS VARCHAR(5));

     

    CREATE TABLE COURSE

    (CNO VARCHAR(5) NOT NULL, 

    CNAME VARCHAR(10) NOT NULL, 

    TNO VARCHAR(10) NOT NULL);

     

    CREATE TABLE SCORE 

    (SNO VARCHAR(3) NOT NULL, 

    CNO VARCHAR(5) NOT NULL, 

    DEGREE NUMERIC(10, 1) NOT NULL)   ;

     

    CREATE TABLE TEACHER 

    (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);

     

    1、 查询Student表中的所有记录的SnameSsexClass列。

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

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

    4、 查询Score表中成绩在6080之间的所有记录。

    5、 查询Score表中成绩为858688的记录。

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

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

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

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

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

    11、查询‘3-105’号课程的平均分。

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

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

    14、查询所有学生的SnameCnoDegree列。

    15、查询所有学生的SnoCnameDegree列。

    16、查询所有学生的SnameCnameDegree列。

    17、以班号和年龄从大到小的顺序查询Student表中的全部记录。

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

    19、查询最高分同学的SnoCnoDegree列。

    20、查询和“李军”同性别的所有同学的Sname.

    21、查询和“李军”同性别并同班的同学Sname.

    22、查询所有选修“计算机导论”课程的“男”同学的成绩表

     

     

     

     

    1、 select Sname,Ssex,Class from Student;

     

    2、 select distinct depart from teacher;

     

    3、 select Sno as '学号',Sname as '姓名',Ssex as '性别',Sbirthday as'出生日期',Class as'班号'from student;

     

     

    select Sno as 学号,Sname as 姓名,Ssex as 性别,Sbirthday as 出生日期,Class as 班号 from student;

     

    4、 select * from score where degree between 60 and 80;

     

    select * from score where degree>=60 and degree<=80;

     

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

     

    6、 select * from student where class='95031'or Ssex='';

     

    7、 select * from student order by class desc;

     

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

     

    select * from score order by cno ,degree desc;

     

    9、 select count(*) as CNT from student where class='95031';

     

    10select Sno as '学号',cno as '课程号', degree as '最高分' from score

     

    where degree=(select max(degree) from score)

     

    11select avg(degree)as 课程平均分 from score where cno='3-105';

     

    12select cno,avg(degree) from score where cno like'3%'group by cno having   count(*) >5;

     

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

     

    14select student.Sname,score.Cno,score.degree from student,score where student.Sno=score.Sno;

     

    15select x.Sno,y.Cname,x.degree from score x,course y where x.Cno=y.Cno;

     

    16select x.Sname,y.Cname,z.degree from student x,course y,score z where x.Sno=z.Sno and z.Cno=y.Cno;

     

    17select class,sname,sbirthday from student order by class desc,sbirthday;

     

    18select x.tname,y.cname from teacher x,course y where x.tno=y.tno and x.tsex='';

     

    19select * from score where degree=(select max(degree)from score);

     

    20select sname from student where ssex=(select ssex from student where sname='李军');

     

    21select sname from student where ssex=(select ssex from student where sname='李军') and class=(select class from student where sname='李军');

     

    22select * from score where sno in(select sno from student where ssex='') and cno=(select cno from course

     

    where cname='计算机导论');

     

  • 相关阅读:
    防火墙透明模式
    HP管理工具System Management Homepage安装配置
    kbmmw 中JSON 中使用SQL 查询
    kbmmw 中JSON 操作入门
    第一个kbmmw for Linux 服务器
    kbmmw 5.02发布
    kbmmw 5.01 发布
    使用delphi 10.2 开发linux 上的Daemon
    使用unidac 在linux 上无驱动直接访问MS SQL SERVER
    使用delphi 10.2 开发linux 上的webservice
  • 原文地址:https://www.cnblogs.com/elnino/p/2861810.html
Copyright © 2011-2022 走看看