SQL server 数据库练习题及答案(练习4)

一、编程题

班级表(clazz)

字段名称

数据类型

约束等

字段描述

id

int

主键,自增

班级序号

name

varchar(32)

唯一键,不能为空

班级名称

teacher_name

varchar(32)

可空

班主任姓名

description

varchar(1024)

可空

班级简介

学生表(student)

字段名称

数据类型

约束等

字段描述

id

int

主键,自增

学生序号

name

varchar(32)

不能为空

学生姓名

sex

varchar(8)

不能为空,默认男

学生性别

age

int

不为空,年龄在[16,50]之间

学生年龄

clazz_id

int

外键(关联clazz表中的id字段)

所在班级序号

stu_num

varchar(32)

唯一键

学号

课程表(course)

字段名称

数据类型

约束等

字段描述

id

int

主键.自增

课程序号

name

varchar(32)

非空

课程名称

grade_point

float

非空

课程的学分绩点

description

varchar(1024)

非空

课程简介

选课表(selection)

字段名称

数据类型

约束等

字段描述

id

int

主键.自增

选课序号

course_id

int

外键(关联course表中的id字段)

外键,课程序号

student_id

int

外键(关联student表中的id字段)

外键,学生序号

score

float

成绩大于0

成绩

问题要求:

1:具备以上数据库、表、数据完成以下内容

2:查询所有学生信息

3:查询所有班级信息

4:查询所有课程信息

5:查询所有选课信息

6:查询班级序号为2 并且性别为女 并且年龄在16-17之间的学生信息

7:查询班级序号为3的学生序号

8:查询班级序号为3的课程编号及成绩

9:查询选课表中成绩小于60的学生序号

10:查询选课表中成绩小于60的学生所有信息

11:查询所有不及格的学生姓名

12:将成绩小于60的同学姓名添加内容,例如“张三(不及格)”

13:将选课表中成绩小于60的成绩全部修改为60

14:将班级序号为3的成绩按照倒序输出

15:查询出班级序号为3、课程序号为3的第一名的学生序号

16:查询出班级序号为3、课程序号为3的最后一名的学生序号

17:将班级序号为3、课程序号为3的成绩按照分数倒序、学生序号正序输出

18:分组统计每门课程的平均分

19:分组统计每门课程的总分

20:查询课程序号为1的最高分

21:查询课程序号为2的最低分

22:查询参加课程序号为3的考试人数

23:统计平均分中大于60的课程序号,并显示出平均成绩

答案:

/*创建数据库*/
create database gao2
on primary 
(name="gao2_data",
filename="c:\gao\gao2_data.mdf", 
size=8MB,
maxsize=100MB, 
filegrowth=10%) 
log on 
(name="gao2_log.ldf", 
filename="c:\gao\gao2_log.ldf", 
size=1MB, 
filegrowth=10%)

/*切换数据库*/
use gao2

/*班级表*/
create table clazz(
cla_id int identity(1,1) primary key not null,   --identity(1,1)自增 primary key设置主键 not null不能为空
cla_name varchar(32) unique not null,            --unique 唯一值
cla_teacher_name varchar(32) ,
description varchar(1024)
)
/*学生表*/
create table student(
stu_id int identity(10000,1) primary key not null,        --identity(10000,1)从10000开始自增
stu_name varchar(32) not null,
stu_sex varchar(8) default('男') not null,                --default('男') 默认值
stu_age int check(stu_age>=16 and stu_age<=50) not null,  --check(stu_age>=16 and stu_age<=50) 条件判断语句
cla_id int references clazz(cla_id),                      --references 关联外键
stu_num varchar(32) unique 
)
/*课程表*/
create table course(
course_id int identity(1,1) primary key not null,
cou_name varchar(32) not null,
grade_point float not null,
descripion varchar(1024) not null
)
/*选课表*/
create table selection(
sele_id int identity(1,1) primary key not null,
course_id int references course(course_id),
stu_id int references student(stu_id),
score float check(score>0)
)
/*插入数据*/
select * from clazz/*查询语句*/
insert clazz values
('班级一','张三','一班'),
('班级二','李四','二班'),
('班级三','王五','三班'),
('班级四','赵六','四班'),
('班级五','赵云','五班')

select * from student/*查询语句*/
insert student values
('李三','男','21','1','s001'),
('小明','男','20','1','s002'),
('小红','女','19','1','s003'),
('关羽','女','22','1','s004'),
('刘七','女','21','1','s005'),
('陈八','男','20','2','s006'),
('政九','女','19','2','s007'),
('孙十','女','22','2','s008'),
('冯一','女','21','2','s009'),
('吴三','男','22','3','s010'),
('小丽','女','16','3','s011'),
('小雪','女','16','2','s012')

select * from course/*查询语句*/
insert course values
('数学','10','数学课程'),
('英语','8','英语课程'),
('语文','10','语文课程'),
('法语','5','法文课程'),
('日语','5','日文课程')

select * from selection/*查询语句*/
insert selection(stu_id,course_id,score) values
(10000,1,'78'),
(10000,2,'89'),
(10000,3,'90'),
(10001,1,'45'),
(10001,2,'67'),
(10001,3,'90'),
(10002,1,'98'),
(10002,2,'99'),
(10002,3,'100'),
(10003,1,'98'),
(10003,2,'92'),
(10003,3,'90'),
(10004,1,'11'),
(10004,2,'24'),
(10004,3,'16'),
(10005,1,'67'),
(10005,2,'56'),
(10005,3,'66'),
(10006,1,'45'),
(10006,2,'67'),
(10006,3,'89'),
(10007,1,'90'),
(10007,2,'89'),
(10007,3,'97'),
(10008,1,'76'),
(10008,2,'87'),
(10008,3,'88'),
(10009,1,'54'),
(10009,2,'62'),
(10009,3,'61')

--2、
select * from student
--3、
select * from clazz
--4、
select * from course
--5、
select * from selection
--6、
select * from student where cla_id = 2 and stu_sex= '女' and stu_age between 16 and 17
--7、
select stu_id from student where cla_id = 3
--8、
select * from student stu join selection se on stu.stu_id=se.stu_id
where cla_id=3
--9、
select distinct stu_id from selection where score<60
--10、
select * from selection se join student st on se.stu_id=st.stu_id where score<60
--11、
select distinct stu_name from student st join selection se on st.stu_id=se.stu_id where score<60
--12、
update student set stu_name=stu_name+'不及格' where stu_name in(select distinct stu_name from student st join selection se on st.stu_id=se.stu_id where score<60)
select * from student
--13、
update selection set score=60 where score<60
select * from selection
--14、
select * from selection se join student st on se.stu_id=st.stu_id join clazz cl on st.cla_id=cl.cla_id where cl.cla_id=3 order by cl.cla_id desc
--15、
select stu_id,score from selection                --查询成绩表中的选课序号和分数
where sele_id in(                                    --选课序号的条件
select sele_id from student st 
join clazz cl on st.cla_id=cl.cla_id 
join selection se on st.stu_id=se.stu_id 
where st.cla_id=2
)
and 
score=(                                            --分数的条件
select max(score) from selection se
join student st on st.stu_id=se.stu_id 
join clazz cl on st.cla_id=cl.cla_id 
where st.cla_id=2
)
go
--16、
select stu_id,score from selection                --查询成绩表中的选课序号和分数
where sele_id in(                                    --选课序号的条件
select sele_id from student st 
join clazz cl on st.cla_id=cl.cla_id 
join selection se on st.stu_id=se.stu_id 
where st.cla_id=2
)
and 
score=(                                            --分数的条件
select min(score) from selection se
join student st on st.stu_id=se.stu_id 
join clazz cl on st.cla_id=cl.cla_id 
where st.cla_id=2
)
go
--17、
select * from student st 
join clazz cl on st.cla_id=cl.cla_id
join selection se on st.stu_id=se.stu_id
where cl.cla_id=2 and course_id=2
order by score desc,se.stu_id asc
--18、
select course_id, avg(score) from selection group by course_id
--19、
select course_id,sum(score) from selection group by course_id
--20、
select course_id,max(score) from selection group by course_id having course_id=1
--21、
select course_id,min(score) from selection group by course_id having course_id=2
--22、
select course_id,count(score) from selection group by course_id having course_id=3
--23、
select course_id,avg(score) from selection group by course_id having avg(score)>=60

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/587490.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Linux基础知识学习3

vim编辑器 其分为四种模式 1.普通(命令)模式 2.编辑模式 3.底栏模式 4.可视化模式 vim编辑器被称为编辑器之神&#xff0c;而Emacs更是神之编辑器 普通模式&#xff1a; 1.光标移动 ^ 移动到行首 w 跳到下一个单词的开头…

C#中使用as关键字将对象转换为指定类型

目录 一、定义 二、示例 三、生成 使用as关键字可以将对象转换为指定类型&#xff0c;与is关键字不同&#xff0c;is关键字用于检查对象是否与给定类型兼容&#xff0c;如果兼容则返回true&#xff0c;如果不兼容则返回false。而as关键字会直接进行类型转换&#xff0c;如果…

小白备战蓝桥杯:Java集合与数据结构

目录 什么是集合&#xff1f; 集合的分类 <> : 泛型 浅谈泛型 代码示例 细说泛型 泛型类 泛型方法 泛型接口 泛型通配符 Collection接口 集合的通用遍历方式 1、迭代器遍历 2、增强for循环 3、forEach方法 4、代码示例 List接口 方法 List集合的遍历方…

【哈希数组】697. 数组的度

697. 数组的度 解题思路 首先创建一个IndexMap 键表示元素 值表示一个列表List list存储该元素在数组的所有索引之后再次创建一个map1 针对上面的List 键表示列表的长度 值表示索引的差值遍历indexmap 将所有的list的长度 和 索引的差值存储遍历map1 找到最大的key 那么这个Ke…

基于Python的B站排行榜大数据分析与可视化系统

温馨提示&#xff1a;文末有 CSDN 平台官方提供的学长 QQ 名片 :) 1. 项目简介 本文介绍了一项基于Python的B站排行榜大数据分析与可视化系统的研究。通过网络爬虫技术&#xff0c;系统能够自动分析B站网址&#xff0c;提取大量相关文本信息并存储在系统中。通过对这些信息进行…

LoongArch指令集-特权指令系统——摘抄自胡伟武体系结构和龙芯架构32位精简版参考手册

例外与中断 1 中断 1.1 中断类型 龙芯架构 32 位精简版下的中断采用线中断的形式。每个处理器核内部可记录 12 个线中断&#xff0c;分别是&#xff1a;1 个核间中断&#xff08;IPI&#xff09;&#xff0c;1 个定时器中断&#xff08;TI&#xff09;&#xff0c;8 个硬中断…

php伪类型

在PHP中&#xff0c;伪类型是指在函数或方法的参数或返回类型声明中使用的一些特殊的类型表示。这些类型在实际编程中并不能直接用作变量的类型&#xff0c;而是用于标示特定的行为或特定类型的值。以下是一些常见的PHP伪类型&#xff1a; mixed&#xff1a;表示可以接受多种不…

CSAPP: LinkBomb 重定位和链接题解(一)

前言 我看了一下&#xff0c;网上关于 LinkBomb 的题解不是很多&#xff0c;LinkBomb 不是 CSAPP 目前大纲的内容&#xff0c;大多数都是写的 LinkLab。如果你做的作业内容是要求每关输出学号&#xff0c;那么你就是跟我一样的 LinkBomb 的实验&#xff08;需要注意的是&#…

emacs:Searching for program: No such file or directory,sml;

首先&#xff0c;编辑一个现有的或新的 SML 文件&#xff08;如果没有其他方便的方法&#xff0c;可尝试C-x C-f test.smlC-x C-f test.sml 创建一个新文件&#xff09;。你会看到 Emacs 窗口底部的模式显示从 "基本"&#xff08;或其他任何模式&#xff09;变成了 S…

OSG 关于MVPW变换

目录 1、模型 Model 2、观察矩阵 ViewMatrix 4、窗口矩阵变化 5、总结 在osg中观察矩阵接口设置如下: 其中eye是相机的世界坐标位置,center是相机观察的位置,up是相机向上向量。 在计算机的三维世界中&#xff0c;相机如同我们的眼睛&#xff0c;捕捉眼前的每一副画面&#xff…

LLaMA-2 下载demo使用

LLaMA-2 下载&demo使用 1. LLaMA-2 下载&demo使用1.1 meta官网1.2 huggingface1.3 其他源1.4 huggingface下载模型和数据加速 1. LLaMA-2 下载&demo使用 1.1 meta官网 llama2下载 在meta的官网 Meta website 进行下载申请&#xff08;注意地区不要选择China会被…

20231231_小米音箱接入chatgpt

参考资料&#xff1a; GitHub - yihong0618/xiaogpt: Play ChatGPT and other LLM with Xiaomi AI Speaker 小爱音箱ChatGPT的折腾记录&#xff1a;win平台部署并运行成功_哔哩哔哩_bilibili GitHub - chatanywhere/GPT_API_free: Free ChatGPT API Key&#xff0c;免费Chat…

LeetCode每日一题.03(外观数列)

给定一个正整数 n &#xff0c;输出外观数列的第 n 项。 「外观数列」是一个整数序列&#xff0c;从数字 1 开始&#xff0c;序列中的每一项都是对前一项的描述。 你可以将其视作是由递归公式定义的数字字符串序列&#xff1a; countAndSay(1) "1"countAndSay(n)…

UG装配-接触对齐

UG装配约束命令在如下位置 首选接触&#xff1a;含接触和对齐&#xff0c;自动判断两种类型 接触&#xff1a;约束对象使其曲面法向在相反方向&#xff0c;并共面或共线 对齐&#xff1a;约束对象使其曲面法向在同一方向&#xff0c;并共面或共线 自动判断中心/轴&#xff1…

Mysql实时数据同步工具Alibaba Canal 使用

目录 Mysql实时数据同步工具Alibaba Canal 使用Canal是什么&#xff1f;工作原理重要版本更新说明 环境准备安装Canalwindow Java : Canal Client 集成依赖编码 工作流程开启原生MQRocketMQ 安装部署 canal配置说明1.1 canal.properties常用配置介绍&#xff1a;2.common参数定…

分库分表之Mycat应用学习一

1 为什么要分库分表 1.1 数据库性能瓶颈的出现 对于应用来说&#xff0c;如果数据库性能出现问题&#xff0c;要么是无法获取连接&#xff0c;是因为在高并发的情况下连接数不够了。要么是操作数据变慢&#xff0c;数据库处理数据的效率除了问题。要么是存储出现问题&#xf…

C#中使用is关键字检查对象是否与给定类型兼容

目录 一、定义 二、示例 三、生成 在程序的开发过程中经常会使用类型转换&#xff0c;如果类型转换不成功则会出现异常&#xff0c;从抛出异常到捕获并处理异常&#xff0c;无形中增加了系统的开销&#xff0c;而且太过频繁地处理异常还会严重地影响系统的稳定性。is关键字可…

双指针刷题(三)

所有算法文章链接&#xff08;最底部&#xff09; http://t.csdnimg.cn/IbllR 1.有效三角形个数 力扣&#xff08;LeetCode&#xff09;官网 - 全球极客挚爱的技术成长平台 1.分析题意 给一个非负的数组&#xff0c;判断这个数组能组成多少个三角形。 2.解题思路 补充知识…

前端vue uni-app使用Vue和ECharts构建交互式树形结构图

题目&#xff1a;使用Vue和ECharts构建交互式树形结构图 摘要&#xff1a;本文介绍了如何使用Vue.js和ECharts构建一个交互式的树形结构图。通过整合ECharts的强大可视化功能&#xff0c;我们创建了一个可拖拽移动、点击展开和收缩的树形结构图&#xff0c;并实现了无限添加子…

平均负载和上下文切换

文章目录 平均负载和上下文切换学习笔记&#xff1a;一、平均负载&#xff08;Load Average&#xff09;二、相关命令三、平均负载与CPU使用率的区别四、上下文切换&#xff08;Context Switch&#xff09;五、减少上下文切换的技术用例六、CPU为什么要进行上下文切换 平均负载…