MySQL第三次实验

embedded/2025/1/19 21:51:05/

一、建库建表

        1、创建数据库mydb11_stu并使用数据库

mysql> create database mydb11_stu;
Query OK, 1 row affected (0.01 sec)mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mydb10_city        |
| mydb11_stu         |
| mydb2_stuinfo      |
| mydb3_employee     |
| mydb4_product      |
| mydb5_sales        |
| mydb6_product      |
| mydb7_openlab      |
| mydb8_worker       |
| mydb9_stusys       |
| mydb_temp1         |
| mydbl_test         |
| mydbx_temp3        |
| mysql              |
| performance_schema |
| sys                |
| temp1              |
+--------------------+
18 rows in set (0.00 sec)mysql> use mydb11_stu
Database changed

        2、创建student表

mysql> create table student (id int(10) not null unique primary key,name varchar(20) not null,sex varchar(4),birth year,department varchar(20),address varchar(50));
Query OK, 0 rows affected, 1 warning (0.03 sec)mysql> desc student;
+------------+-------------+------+-----+---------+-------+
| Field      | Type        | Null | Key | Default | Extra |
+------------+-------------+------+-----+---------+-------+
| id         | int         | NO   | PRI | NULL    |       |
| name       | varchar(20) | NO   |     | NULL    |       |
| sex        | varchar(4)  | YES  |     | NULL    |       |
| birth      | year        | YES  |     | NULL    |       |
| department | varchar(20) | YES  |     | NULL    |       |
| address    | varchar(50) | YES  |     | NULL    |       |
+------------+-------------+------+-----+---------+-------+
6 rows in set (0.00 sec)

        3、创建score表

mysql> create table score(id int(10) not null unique primary key auto_increment,stu_id int(10) not null,c_name varchar(20) ,grade int(10));
Query OK, 0 rows affected, 3 warnings (0.03 sec)mysql> desc score;
+--------+-------------+------+-----+---------+----------------+
| Field  | Type        | Null | Key | Default | Extra          |
+--------+-------------+------+-----+---------+----------------+
| id     | int         | NO   | PRI | NULL    | auto_increment |
| stu_id | int         | NO   |     | NULL    |                |
| c_name | varchar(20) | YES  |     | NULL    |                |
| grade  | int         | YES  |     | NULL    |                |
+--------+-------------+------+-----+---------+----------------+
4 rows in set (0.00 sec)

二、插入数据

        1、向student表中插入记录

mysql> insert into student values-> (901,'张三丰','男',2002,'计算机系','北京市海淀区'),-> (902,'周全有','男',2000,'中文系','北京市昌平区'),-> (903,'张思维','女',2003,'中文系','湖南省永州市'),-> (904,'李广昌','男',1999,'英语系','辽宁省阜新市'),-> (905,'王翰','男',2004,'英语系','福建省厦门市'),-> (906,'王心凌','女',1998,'计算机系','湖南省衡阳市');
Query OK, 6 rows affected (0.01 sec)
Records: 6  Duplicates: 0  Warnings: 0mysql> select * from student;
+-----+--------+------+-------+------------+--------------+
| id  | name   | sex  | birth | department | address      |
+-----+--------+------+-------+------------+--------------+
| 901 | 张三丰 | 男   |  2002 | 计算机系   | 北京市海淀区 |
| 902 | 周全有 | 男   |  2000 | 中文系     | 北京市昌平区 |
| 903 | 张思维 | 女   |  2003 | 中文系     | 湖南省永州市 |
| 904 | 李广昌 | 男   |  1999 | 英语系     | 辽宁省阜新市 |
| 905 | 王翰   | 男   |  2004 | 英语系     | 福建省厦门市 |
| 906 | 王心凌 | 女   |  1998 | 计算机系   | 湖南省衡阳市 |
+-----+--------+------+-------+------------+--------------+
6 rows in set (0.00 sec)

        2、向score表插入记录

mysql> insert into score values-> (null,901,'计算机',98),-> (null,901,'英语',80),-> (null,902,'计算机',65),-> (null,902,'中文',88),-> (null,903,'中文',95),-> (null,904,'计算机',70),-> (null,904,'英语',92),-> (null,905,'英语',94),-> (null,906,'计算机',49),-> (null,906,'英语',83);
Query OK, 10 rows affected (0.01 sec)
Records: 10  Duplicates: 0  Warnings: 0mysql> select * from score;
+----+--------+--------+-------+
| id | stu_id | c_name | grade |
+----+--------+--------+-------+
|  1 |    901 | 计算机 |    98 |
|  2 |    901 | 英语   |    80 |
|  3 |    902 | 计算机 |    65 |
|  4 |    902 | 中文   |    88 |
|  5 |    903 | 中文   |    95 |
|  6 |    904 | 计算机 |    70 |
|  7 |    904 | 英语   |    92 |
|  8 |    905 | 英语   |    94 |
|  9 |    906 | 计算机 |    49 |
| 10 |    906 | 英语   |    83 |
+----+--------+--------+-------+
10 rows in set (0.00 sec)

三、查询

        1、分别查询student表和score表的所有记录

mysql> select * from student;
+-----+--------+------+-------+------------+--------------+
| id  | name   | sex  | birth | department | address      |
+-----+--------+------+-------+------------+--------------+
| 901 | 张三丰 | 男   |  2002 | 计算机系   | 北京市海淀区 |
| 902 | 周全有 | 男   |  2000 | 中文系     | 北京市昌平区 |
| 903 | 张思维 | 女   |  2003 | 中文系     | 湖南省永州市 |
| 904 | 李广昌 | 男   |  1999 | 英语系     | 辽宁省阜新市 |
| 905 | 王翰   | 男   |  2004 | 英语系     | 福建省厦门市 |
| 906 | 王心凌 | 女   |  1998 | 计算机系   | 湖南省衡阳市 |
+-----+--------+------+-------+------------+--------------+
6 rows in set (0.00 sec)mysql> select * from score;
+----+--------+--------+-------+
| id | stu_id | c_name | grade |
+----+--------+--------+-------+
|  1 |    901 | 计算机 |    98 |
|  2 |    901 | 英语   |    80 |
|  3 |    902 | 计算机 |    65 |
|  4 |    902 | 中文   |    88 |
|  5 |    903 | 中文   |    95 |
|  6 |    904 | 计算机 |    70 |
|  7 |    904 | 英语   |    92 |
|  8 |    905 | 英语   |    94 |
|  9 |    906 | 计算机 |    49 |
| 10 |    906 | 英语   |    83 |
+----+--------+--------+-------+
10 rows in set (0.00 sec)

        2、查询student表的第2条到第5条记录        

mysql> select * from student limit 1,4;
+-----+--------+------+-------+------------+--------------+
| id  | name   | sex  | birth | department | address      |
+-----+--------+------+-------+------------+--------------+
| 902 | 周全有 | 男   |  2000 | 中文系     | 北京市昌平区 |
| 903 | 张思维 | 女   |  2003 | 中文系     | 湖南省永州市 |
| 904 | 李广昌 | 男   |  1999 | 英语系     | 辽宁省阜新市 |
| 905 | 王翰   | 男   |  2004 | 英语系     | 福建省厦门市 |
+-----+--------+------+-------+------------+--------------+
4 rows in set (0.00 sec)

        3、从student表中查询计算机系和英语系的学生的信息

mysql> select * from student where department in('计算机系','英语系');
+-----+--------+------+-------+------------+--------------+
| id  | name   | sex  | birth | department | address      |
+-----+--------+------+-------+------------+--------------+
| 901 | 张三丰 | 男   |  2002 | 计算机系   | 北京市海淀区 |
| 904 | 李广昌 | 男   |  1999 | 英语系     | 辽宁省阜新市 |
| 905 | 王翰   | 男   |  2004 | 英语系     | 福建省厦门市 |
| 906 | 王心凌 | 女   |  1998 | 计算机系   | 湖南省衡阳市 |
+-----+--------+------+-------+------------+--------------+
4 rows in set (0.00 sec)

        4、从student表中查询年龄小于22岁的学生信息

mysql> select * from student where (year(now())-birth) < 22;
+-----+------+------+-------+------------+--------------+
| id  | name | sex  | birth | department | address      |
+-----+------+------+-------+------------+--------------+
| 905 | 王翰 | 男   |  2004 | 英语系     | 福建省厦门市 |
+-----+------+------+-------+------------+--------------+
1 row in set (0.00 sec)

        5、从student表中查询每个院系有多少人

mysql> select department '院系',count(id) '人数'  from student  group by department;
+----------+------+
| 院系     | 人数 |
+----------+------+
| 计算机系 |    2 |
| 中文系   |    2 |
| 英语系   |    2 |
+----------+------+
3 rows in set (0.00 sec)

        6、从score表中查询每个科目的最高分

mysql> select c_name '科目',max(grade) '最高分' from score group by c_name;
+--------+--------+
| 科目   | 最高分 |
+--------+--------+
| 计算机 |     98 |
| 英语   |     94 |
| 中文   |     95 |
+--------+--------+
3 rows in set (0.00 sec)

        7、查询李广昌的考试科目(c_name)和考试成绩(grade)

mysql> select s.c_name,s.grade from score s join student stu on s.stu_id=stu.id  where name = '李广昌';
+--------+-------+
| c_name | grade |
+--------+-------+
| 计算机 |    70 |
| 英语   |    92 |
+--------+-------+
2 rows in set (0.00 sec)

        8、用连接的方式查询所有学生的信息和考试信息

mysql> select stu.*,s.c_name,s.grade from student stu left join score s on stu.id=s.stu_id;
+-----+--------+------+-------+------------+--------------+--------+-------+
| id  | name   | sex  | birth | department | address      | c_name | grade |
+-----+--------+------+-------+------------+--------------+--------+-------+
| 901 | 张三丰 | 男   |  2002 | 计算机系   | 北京市海淀区 | 英语   |    80 |
| 901 | 张三丰 | 男   |  2002 | 计算机系   | 北京市海淀区 | 计算机 |    98 |
| 902 | 周全有 | 男   |  2000 | 中文系     | 北京市昌平区 | 中文   |    88 |
| 902 | 周全有 | 男   |  2000 | 中文系     | 北京市昌平区 | 计算机 |    65 |
| 903 | 张思维 | 女   |  2003 | 中文系     | 湖南省永州市 | 中文   |    95 |
| 904 | 李广昌 | 男   |  1999 | 英语系     | 辽宁省阜新市 | 英语   |    92 |
| 904 | 李广昌 | 男   |  1999 | 英语系     | 辽宁省阜新市 | 计算机 |    70 |
| 905 | 王翰   | 男   |  2004 | 英语系     | 福建省厦门市 | 英语   |    94 |
| 906 | 王心凌 | 女   |  1998 | 计算机系   | 湖南省衡阳市 | 英语   |    83 |
| 906 | 王心凌 | 女   |  1998 | 计算机系   | 湖南省衡阳市 | 计算机 |    49 |
+-----+--------+------+-------+------------+--------------+--------+-------+
10 rows in set (0.00 sec)

        9、计算每个学生的总成绩

mysql> select stu_id,sum(grade) '总成绩' from score group by stu_id ;
+--------+--------+
| stu_id | 总成绩 |
+--------+--------+
|    901 |    178 |
|    902 |    153 |
|    903 |     95 |
|    904 |    162 |
|    905 |     94 |
|    906 |    132 |
+--------+--------+
6 rows in set (0.00 sec)

        10、计算每个考试科目的平均成绩

mysql> select c_name,avg(grade) '平均成绩' from score group by c_name;
+--------+----------+
| c_name | 平均成绩 |
+--------+----------+
| 计算机 |  70.5000 |
| 英语   |  87.2500 |
| 中文   |  91.5000 |
+--------+----------+
3 rows in set (0.00 sec)

        11、查询计算机成绩低于95的学生信息

mysql> select stu.* from student stu join score s on stu.id=s.stu_id  where s.c_name="计算机" and s.grade <95;
+-----+--------+------+-------+------------+--------------+
| id  | name   | sex  | birth | department | address      |
+-----+--------+------+-------+------------+--------------+
| 902 | 周全有 | 男   |  2000 | 中文系     | 北京市昌平区 |
| 904 | 李广昌 | 男   |  1999 | 英语系     | 辽宁省阜新市 |
| 906 | 王心凌 | 女   |  1998 | 计算机系   | 湖南省衡阳市 |
+-----+--------+------+-------+------------+--------------+
3 rows in set (0.00 sec)

        12、将计算机考试成绩按从高到低进行排序

mysql> select * from score where c_name='计算机' order by grade desc;
+----+--------+--------+-------+
| id | stu_id | c_name | grade |
+----+--------+--------+-------+
|  1 |    901 | 计算机 |    98 |
|  6 |    904 | 计算机 |    70 |
|  3 |    902 | 计算机 |    65 |
|  9 |    906 | 计算机 |    49 |
+----+--------+--------+-------+
4 rows in set (0.00 sec)

        13、从student表和score表中查询出学生的学号,然后合并查询结果

mysql> select id from student union select stu_id from score;
+-----+
| id  |
+-----+
| 901 |
| 902 |
| 903 |
| 904 |
| 905 |
| 906 |
+-----+
6 rows in set (0.00 sec)

        14、查询姓张或者姓王的同学的姓名、院系和考试科目及成绩

mysql> select stu.name,stu.department,s.c_name,s.grade from student stu join score s on stu.id=s.stu_id where stu.name like '张%' or stu.name like '王%';
+--------+------------+--------+-------+
| name   | department | c_name | grade |
+--------+------------+--------+-------+
| 张三丰 | 计算机系   | 计算机 |    98 |
| 张三丰 | 计算机系   | 英语   |    80 |
| 张思维 | 中文系     | 中文   |    95 |
| 王翰   | 英语系     | 英语   |    94 |
| 王心凌 | 计算机系   | 计算机 |    49 |
| 王心凌 | 计算机系   | 英语   |    83 |
+--------+------------+--------+-------+
6 rows in set (0.00 sec)

        15、查询都是湖南的学生的姓名、年龄、院系和考试科目及成绩

mysql> select stu.name, year(now())-stu.birth '年龄' ,stu.department,s.c_name,s.grade from student stu join score s on stu.id=s.stu_id where stu.address like '湖南省%';
+--------+------+------------+--------+-------+
| name   | 年龄 | department | c_name | grade |
+--------+------+------------+--------+-------+
| 张思维 |   22 | 中文系     | 中文   |    95 |
| 王心凌 |   27 | 计算机系   | 计算机 |    49 |
| 王心凌 |   27 | 计算机系   | 英语   |    83 |
+--------+------+------------+--------+-------+
3 rows in set (0.00 sec)

http://www.ppmy.cn/embedded/155317.html

相关文章

在 C++ 中实现调试日志输出

在 C 编程中&#xff0c;调试日志对于定位问题和优化代码至关重要。有效的调试日志不仅能帮助我们快速定位错误&#xff0c;还能提供有关程序运行状态的有价值的信息。本文将介绍几种常用的调试日志输出方法&#xff0c;并教你如何在日志中添加时间戳。 1. 使用 #ifdef _DEBUG…

CSS3 动画详解

1.基本概念 CSS3 动画允许您通过定义关键帧和一系列动画属性&#xff0c;在网页上创建动态的视觉效果。与传统的 JavaScript 动画相比&#xff0c;CSS3 动画更易于编写和维护&#xff0c;并且在性能方面也有不错的表现。它可以应用于 HTML 元素&#xff0c;使元素在页面上移动…

vue+arcgis api for js实现地图经纬网格显示

vue代码调用&#xff1a; import { gridLineLatLng } from ./js/mapGrids.jsexport default {mounted(){// 显示经纬网格gridLineLatLng.currentMap this.mapAndView// gridLineLatLng.isGetMapPageXmax falsegridLineLatLng.init()},beforeDestroy() {// 删除经纬网格gridL…

YOLOv11实战行人跌倒识别

本文采用YOLOv11作为核心算法框架&#xff0c;结合PyQt5构建用户界面&#xff0c;使用Python3进行开发。YOLOv11以其高效的实时检测能力&#xff0c;在多个目标检测任务中展现出卓越性能。本研究针对行人跌倒数据集进行训练和优化&#xff0c;该数据集包含丰富的行人跌倒图像样…

BEVFusion论文阅读

1. 简介 融合激光雷达和相机的信息已经变成了3D目标检测的一个标准&#xff0c;当前的方法依赖于激光雷达传感器的点云作为查询&#xff0c;以利用图像空间的特征。然而&#xff0c;人们发现&#xff0c;这种基本假设使得当前的融合框架无法在发生 LiDAR 故障时做出任何预测&a…

【Unity踩坑】Unity中提示缺少Visual Studio组件

问题&#xff1a; 在Unity中选择UWP平台时&#xff0c;提示Visual Studio缺少组件。 Selected Visual Studio is missing required components and may not be able to build the generated project. 解决方案&#xff1a; 在Visual Studio Installer里&#xff0c;安装上&quo…

大语言模型的语境中“越狱”和思维链

大语言模型的语境中“越狱”和思维链 越狱(Jailbreaking) 含义:在大语言模型的语境中,“越狱”是指用户试图绕过语言模型的安全限制和使用规则,让模型生成违反伦理道德、包含有害内容(如暴力、歧视、恶意软件代码等)的输出。这些安全限制是由模型开发者设置的,目的是确…

Node.js path.join

path.join 是 Node.js 中的 path 模块提供的一个方法&#xff0c;用于连接多个路径片段并规范化路径。与 path.resolve不同&#xff0c;path.join 只是将给定的路径片段合并为一个单一的路径&#xff0c;并且不会自动转换为绝对路径&#xff0c;它只会拼接并返回一个规范化的路…