• 数据库课后习题加真题


    第二章

    在这里插入图片描述
    在这里插入图片描述

    第三章

    3.8 对于教学数据库的三个基本表:

    s( 学号 ‾ \underline{学号} 学号,姓名,年龄, 性别)
    sc( 学号 , 课程号 ‾ \underline{学号, 课程号} 学号,课程号, 成绩)
    c( 课程号 ‾ \underline{课程号} 课程号,课程名, 任课教师姓名)

    1. 查询张小飞没有选修的课程号和课程名
      select cno, cname
      from c
      where not exists
      (
      	select *
      	from s
      	inner join sc on s.sno = sc.sno
      	where c.cno = sc.cno
      	and s.sname = '张小飞'
      );
      
      • 1
      • 2
      • 3
      • 4
      • 5
      • 6
      • 7
      • 8
      • 9
      • 10
    2. 查询至少选修了3门课程的学生的学号和姓名
      select s.sno, sname
      from s
      inner join sc on s.sno = sc.sno
      group by s.sno, sname
      having count(sno) >= 3;                                                                                                                                       
      
      • 1
      • 2
      • 3
      • 4
      • 5
    3. 查询全部学生都选修了的课程编号和课程名称
      select c.cno, cname
      from c
      where not exists
      (
      	select *
      	from s
      	where not exists
      	(
      		select *
      		from sc
      		where c.cno = sc.cno
      		and s.sno = sc.sno
      	) 
      );
      
      • 1
      • 2
      • 3
      • 4
      • 5
      • 6
      • 7
      • 8
      • 9
      • 10
      • 11
      • 12
      • 13
      • 14
    4. 在sc中删除尚无成绩的选课元组
      delete
      from sc
      where grade is null;
      
      • 1
      • 2
      • 3
    5. 把高等数学课的所有不及格成绩都改为60
      update sc
      set grade = 60
      where grade < 60
      and cno in
      (
      	select cno 
      	from c
      	where cname = '高等数学'
      );	
      
      • 1
      • 2
      • 3
      • 4
      • 5
      • 6
      • 7
      • 8
      • 9
    6. 把低于总评成绩的女同学的成绩提高5%
      update sc
      set grade = grade * 1.05
      where sno in 
      (
      	select sno
      	from sc
      	inner join s on sc.sno = s.sno
      	where gener = '女'
      	and grade < avg(grade) 
      );
      
      • 1
      • 2
      • 3
      • 4
      • 5
      • 6
      • 7
      • 8
      • 9
      • 10
    7. 向c中插入元组(‘c8’, ‘vc++’, ‘王昆’)
      insert into c values('c8', 'vc++', '王昆');
      
      • 1

    3.9有下面四个关系模式
    product (maker, model, type)
    pc(model, speed, ram, hd, cd, price)
    laptop(model, speed, ram, screen, price)
    printer(model, color, type, price)
    注:product表中type属性列的取值为pc或laptop或printer;printer表中的color取值为TRUE,false表示彩色还是单色

    1. 找出价格高于1万5千元,并且运行速度低于同价位pc的平均速度的laptop
      select *
      from laptop 
      where price > 15000
      and speed <
      (
      	select avg(speed)
      	from lpc
      	where laptop.price = pc.price
      );
      
      • 1
      • 2
      • 3
      • 4
      • 5
      • 6
      • 7
      • 8
      • 9
    2. 计算厂家hp生产的pc机和laptop机的平均价格
      使用并集将两张表连起来
      select avg(price)
      from product 
      inner join pc on  product.model = pc.model
      where maker = 'hp'
      group by type
      union
      select avg(price)
      from product 
      inner join laptop on product.model = laptop.model
      where maker = 'hp'
      group by type; 
      
      • 1
      • 2
      • 3
      • 4
      • 5
      • 6
      • 7
      • 8
      • 9
      • 10
      • 11
    3. 找出生产价格最低的彩色打印机的厂家
      select maker
      from product
      where model in
      (
      	select model
      	from printer 
      	where color = true
      	and price <= all
      	(
      		select price
      		from printer
      	)
      );
      
      • 1
      • 2
      • 3
      • 4
      • 5
      • 6
      • 7
      • 8
      • 9
      • 10
      • 11
      • 12
      • 13
    4. 计算各厂商生产的laptop机的显示器的平均尺寸
      select maker, avg(screen) 
      from product
      innner join laptop on product.model = laptop.model
      group by maker;
      
      • 1
      • 2
      • 3
      • 4
    5. 计算每一个生产厂商的pc机的最高价格
      select maker, max(price)
      from product 
      inner join pc on product.model = pc.model
      group by maker;
      
      • 1
      • 2
      • 3
      • 4
    6. 计算生产打印机的各个厂商生产的pc机的硬盘的平均容量
      select maker, avg(hd)
      from product 
      inner join pc on product.model = pc.model
      where product.type = printer 
      group by maker;
      
      • 1
      • 2
      • 3
      • 4
      • 5

    第四到六章

    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述

    某年真题

    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述

    在这里插入图片描述


    答案自己写的,谨慎参考

  • 相关阅读:
    3 判断单链表的对称性
    springboot的web开发
    3428. 放苹果
    【异常检测】【PaDiM】论文简单梳理与代码实现
    计算机毕业设计springboot教务管理系统4z3kl源码+系统+程序+lw文档+部署
    XTU-OJ 1178-Rectangle
    一文掌握Spring MVC REST风格开发
    [附源码]Python计算机毕业设计Django小区疫情事件处理系统
    开源版php表单提交系统源码 轻松搭建表单系统 支持字段自定义+在线付费报名
    区块链 - 为何元宇宙上了时代周刊?
  • 原文地址:https://blog.csdn.net/m0_64372178/article/details/134471410