当前位置: 首页 > news >正文

MySQL经典50题

目录

一、数据表介绍

二、练习题

1.    查询" 01 "课程比" 02 "课程成绩高的学生的信息及课程分数

2.    查询同时存在" 01 "课程和" 02 "课程的情况

3.    查询存在" 01 "课程但可能不存在" 02 "课程的情况(不存在时显示为 null )

4.    查询不存在" 01 "课程但存在" 02 "课程的情况

5.    查询平均成绩大于等于 60 分的同学的学生编号和学生姓名和平均成绩

6.    查询在 SC 表存在成绩的学生信息

7.    查询所有同学的学生编号、学生姓名、选课总数、所有课程的总成绩(没成绩的显示为 null )

8.    查有成绩的学生信息

9.    查询「李」姓老师的数量

10.    查询学过「张三」老师授课的同学的信息

11.    查询没有学全所有课程的同学的信息

12.    查询至少有一门课与学号为" 01 "的同学所学相同的同学的信

13.    查询和" 01 "号的同学学习的课程 完全相同的其他同学的信息

14.    查询没学过"张三"老师讲授的任一门课程的学生姓名

15.    查询两门及其以上不及格课程的同学的学号,姓名及其平均成绩

16.    检索" 01 "课程分数小于 60,按分数降序排列的学生信息

17.    按平均成绩从高到低显示所有学生的所有课程的成绩以及平均成绩

18.    查询各科成绩最高分、最低分和平均分:以如下形式显示:课程 ID,课程 name,最高分,最低分,平均分,及格率,中等率,优良率,优秀率及格为>=60,中等为:70-80,优良为:80-90,优秀为:>=90要求输出课程号和选修人数,查询结果按人数降序排列,若人数相同,按课程号升序排列

19.    按各科成绩进行排序,并显示排名, Score 重复时保留名次空缺

20. 按各科成绩进行排序,并显示排名, Score 重复时合并名次

21.    查询学生的总成绩,并进行排名,总分重复时保留名次空缺

22. 查询学生的总成绩,并进行排名,总分重复时不保留名次空缺

23.    统计各科成绩各分数段人数:课程编号,课程名称,[100-85],[85-70],[70-60],[60-0] 及所占百分比

24.    查询各科成绩前三名的记录

25.    查询每门课程被选修的学生数

26.    查询出只选修两门课程的学生学号和姓名

27.    查询男生、女生人数

28.    查询名字中含有「风」字的学生信息

29.    查询同名同性学生名单,并统计同名人数

30.    查询 1990 年出生的学生名单

31.    查询每门课程的平均成绩,结果按平均成绩降序排列,平均成绩相同时,按课程编号升序排列

32.    查询平均成绩大于等于 85 的所有学生的学号、姓名和平均成绩

33.    查询课程名称为「数学」,且分数低于 60 的学生姓名和分数

34.    查询所有学生的课程及分数情况(存在学生没成绩,没选课的情况)

35.    查询任何一门课程成绩在 70 分以上的姓名、课程名称和分数

36.    查询不及格的课程

37.    查询课程编号为 01 且课程成绩在 80 分以上的学生的学号和姓名

38.    求每门课程的学生人数

39.    成绩不重复,查询选修「张三」老师所授课程的学生中,成绩最高的学生信息及其成绩

40.    成绩有重复的情况下,查询选修「张三」老师所授课程的学生中,成绩最高的学生信息及其成绩

41.    查询不同课程成绩相同的学生的学生编号、课程编号、学生成绩

42.    查询每门功成绩最好的前两名

43.    统计每门课程的学生选修人数(超过 5 人的课程才统计)。

44.    检索至少选修两门课程的学生学号

45.    查询选修了全部课程的学生信息

46.    查询各学生的年龄,只按年份来算

47.    按照出生日期来算,当前月日 < 出生年月的月日则,年龄减一

48.    查询本周过生日的学生

49.    查询下周过生日的学生

50.    查询本月过生日的学生

51.    查询下月过生日的学生


一、数据表介绍

1.学生表 Student(SId,Sname,Sage,Ssex) --SId 学生编号,Sname 学生姓名,Sage 出生年月,Ssex 学生性别

2.课程表 Course(CId,Cname,TId) --CId 课程编号,Cname 课程名称,TId 教师编号

3.教师表 Teacher(TId,Tname) --TId 教师编号,Tname 教师姓名

4.成绩表 SC(SId,CId,score) --SId 学生编号,CId 课程编号,score 分数

学生表 Student
create table Student(SId varchar(10),Sname varchar(10),Sage datetime,Ssex varchar(10)
);
insert into Student values('01' , '赵雷' , '1990-01-01' , '男');
insert into Student values('02' , '钱电' , '1990-12-21' , '男');
insert into Student values('03' , '孙风' , '1990-12-20' , '男');
insert into Student values('04' , '李云' , '1990-12-06' , '男');
insert into Student values('05' , '周梅' , '1991-12-01' , '女');
insert into Student values('06' , '吴兰' , '1992-01-01' , '女');
insert into Student values('07' , '郑竹' , '1989-01-01' , '女');
insert into Student values('09' , '张三' , '2017-12-20' , '女');
insert into Student values('10' , '李四' , '2017-12-25' , '女');
insert into Student values('11' , '李四' , '2012-06-06' , '女');
insert into Student values('12' , '赵六' , '2013-06-13' , '女');
insert into Student values('13' , '孙七' , '2014-06-01' , '女');科目表 Course
create table Course(CId varchar(10),Cname nvarchar(10),TId varchar(10)
);
insert into Course values('01' , '语文' , '02');
insert into Course values('02' , '数学' , '01');
insert into Course values('03' , '英语' , '03');教师表 Teacher
create table Teacher(TId varchar(10),Tname varchar(10)
);
insert into Teacher values('01' , '张三');
insert into Teacher values('02' , '李四');
insert into Teacher values('03' , '王五');成绩表 SC
create table SC(SId varchar(10),CId varchar(10),score decimal(18,1)
);
insert into SC values('01' , '01' , 80);
insert into SC values('01' , '02' , 90);
insert into SC values('01' , '03' , 99);
insert into SC values('02' , '01' , 70);
insert into SC values('02' , '02' , 60);
insert into SC values('02' , '03' , 80);
insert into SC values('03' , '01' , 80);
insert into SC values('03' , '02' , 80);
insert into SC values('03' , '03' , 80);
insert into SC values('04' , '01' , 50);
insert into SC values('04' , '02' , 30);
insert into SC values('04' , '03' , 20);
insert into SC values('05' , '01' , 76);
insert into SC values('05' , '02' , 87);
insert into SC values('06' , '01' , 31);
insert into SC values('06' , '03' , 34);
insert into SC values('07' , '02' , 89);
insert into SC values('07' , '03' , 98);

二、练习题

1.    查询" 01 "课程比" 02 "课程成绩高的学生的信息及课程分数

select s.*, sc1.score, sc2.score
from student s
join SC sc1
on s.SId = sc1.SId
join SC sc2
on sc1.SId = sc2.CId and sc1.CId = "01" and sc2.CId = "02"
where sc1.score > sc2.score;

2.    查询同时存在" 01 "课程和" 02 "课程的情况

select s1.SId, s1.score,s2.score
from  (select SId, score from SC where CId ="01") s1, 
(select SId, score from SC where CId ="02") s2 
where s1.SId = s2.SId;

3.    查询存在" 01 "课程但可能不存在" 02 "课程的情况(不存在时显示为 null )

select * 
from SC a
left join SC b
on a.SId = b.SId and b.CId = "02"
where a.CId = "01";

4.    查询不存在" 01 "课程但存在" 02 "课程的情况

select *
from (select * from SC s where s.CId = "02") as a
where a.SId not in (select SId from SC s where s.CId = "01");

5.    查询平均成绩大于等于 60 分的同学的学生编号和学生姓名和平均成绩

select SC.SId, s.Sname, AVG(score)
from student s, SC
where s.SId = SC.SId
group by SC.SId
having AVG(score) >= 60;

6.    查询在 SC 表存在成绩的学生信息

select * 
from student
where student.SId in (select SId from SC);

7.    查询所有同学的学生编号、学生姓名、选课总数、所有课程的总成绩(没成绩的显示为 null )

select s.SId, s.Sname, b.cnt, b.sum_s
from student s
left join (select SId, count(CId) as cnt, sum(score) as sum_sfrom SC group by SId) as b
on s.SId = b.SId;

8.    查有成绩的学生信息

select *
from student
where SId in (select SId from SC group by SId);

9.    查询「李」姓老师的数量

select count(*)
from teacher
where Tname like '李%';

10.    查询学过「张三」老师授课的同学的信息

select s.*, Tname
from student s
inner join(select SC.*, Tnamefrom SCinner join(select course.*, Tnamefrom courseinner join teacher as thon course.TId = th.TId) as aon SC.CId = a.CId) as b
on s.SId = b.SId
where Tname = '张三';

11.    查询没有学全所有课程的同学的信息

select s.*
from student s
inner join(select SId, count(CId) as cntfrom SCgroup by SIdhaving cnt < (select count(CId) from course)) as a
on s.SId = a.SId;

12.    查询至少有一门课与学号为" 01 "的同学所学相同的同学的信

select distinct s.*
from student s
inner join (select *from SCwhere CId in(select CIdfrom SCwhere SId = "01")) as b
on s.SId = b.SId;

13.    查询和" 01 "号的同学学习的课程 完全相同的其他同学的信息

select s.*
from student s
inner join (select SIdfrom SCwhere SId not in (select SIdfrom SCwhere CId not in (select CIdfrom SCwhere SId = "01")) and SId != "01"group by SIdhaving count(CId) = (select count(CId) from SC where SId = "01")) as a
on s.SId = a.SId;

14.    查询没学过"张三"老师讲授的任一门课程的学生姓名

select Sname
from student s
where SId not in (select SIdfrom SCleft join course couon SC.CId = cou.CIdinner join teacher thon cou.TId = th.TIdwhere Tname = "张三");

15.    查询两门及其以上不及格课程的同学的学号,姓名及其平均成绩

select b.SId, s.Sname, avg_sc
from (select SC.SId, AVG(score) as avg_scfrom SCinner join(select SIdfrom SCwhere score < 60group by SIdhaving count(CId) >= 2) as aon SC.SId = a.SIdgroup by SC.SId) as b
left join student s
on b.SId = s.SId;

16.    检索" 01 "课程分数小于 60,按分数降序排列的学生信息

select s.*, a.score
from student s
right join(select SId, scorefrom SCwhere CId = "01" and score <60) as a
on s.SId = a.SId
order by a.score desc;

17.    按平均成绩从高到低显示所有学生的所有课程的成绩以及平均成绩

select a.SId, a.CId, a.Score, avg_sc
from (select s.SId, SC.CId, SC.Scorefrom student sleft join SCon s.SId = SC.SId) as a
left join (select SId, AVG(score) as avg_scfrom SCgroup by SId) as b
on a.SId = b.SId
order by b.avg_sc desc;

18.    查询各科成绩最高分、最低分和平均分:
以如下形式显示:课程 ID,课程 name,最高分,最低分,平均分,及格率,中等率,优良率,优秀率
及格为>=60,中等为:70-80,优良为:80-90,优秀为:>=90
要求输出课程号和选修人数,查询结果按人数降序排列,若人数相同,按课程号升序排列

select a.*, b.Cname
from(select CId,count(*) as 选修人数,max(score) as 最高分,min(score) as 最低分,avg(score) as 平均分,sum(case when score >= 60 then 1 else 0 end) / count(*) as 及格率,sum(case when score >= 70 and score < 80 then 1 else 0 end) / count(*) as 中等率,sum(case when score >= 80 and score < 90 then 1 else 0 end) / count(*) as 优良率,sum(case when score >= 90 then 1 else 0 end) / count(*) as 优秀率from SCgroup by CIdorder by count(*) desc, CId asc) as a
left join course as b
on a.CId = b.CId;

19.    按各科成绩进行排序,并显示排名, Score 重复时保留名次空缺

select *, row_number() 
over (partition by CId order by score desc) as 排名
from SC;

20. 按各科成绩进行排序,并显示排名, Score 重复时合并名次

select *, rank()
over (partition by CId order by score desc) as 排名
from SC;

21.    查询学生的总成绩,并进行排名,总分重复时保留名次空缺

select *, rank()
over (order by sum_s desc) as 排名
from (select SId, sum(score) as sum_sfrom SCgroup by SId) as a;

22. 查询学生的总成绩,并进行排名,总分重复时不保留名次空缺

select *,dense_rank()
over (order by sum_sc desc) as 排名
from(select SId, sum(score) as sum_scfrom SCgroup by SId) as a;

23.    统计各科成绩各分数段人数:课程编号,课程名称,[100-85],[85-70],[70-60],[60-0] 及所占百分比

select b.*, a.Cname
from course as a
right join(select CId,concat(sum(case when score > 0 and score < 60 then 1 else 0 end) / count(*) * 100, '%') as '[0-60]',concat(sum(case when score >= 60 and score < 70 then 1 else 0 end) / count(*) * 100, '%') as '[60-70]',concat(sum(case when score >= 70 and score < 85 then 1 else 0 end) / count(*) * 100, '%') as '[70-85]',concat(sum(case when score >= 85 and score <= 100 then 1 else 0 end) / count(*) * 100, '%') as '[85-100]'from SCgroup by CId) as b
on a.CId = b.CId;

24.    查询各科成绩前三名的记录

select *
from(select *,dense_rank()over (partition by CId order by score desc) as rnkfrom SC) as a
where rnk <= 3;

25.    查询每门课程被选修的学生数

select CId, count(*) as 学生数
from SC
group by CId;

26.    查询出只选修两门课程的学生学号和姓名

select a.SId, s.Sname
from student s
right join(select SId, count(*) as 课程数from SCgroup by SIdhaving 课程数 = 2) as a
on s.SId = a.SId;

27.    查询男生、女生人数

select Ssex, count(*) as num
from student
group by Ssex;

28.    查询名字中含有「风」字的学生信息

select *
from student
where Sname like "%风%";

29.    查询同名同性学生名单,并统计同名人数

select Sname, Ssex, count(*) as 同名人数
from (select s.*from student sinner join student aon s.Sname = a.Sname and s.Ssex = a.Ssex and s.SId != a.SId) as a
group by Sname, Ssex;

30.    查询 1990 年出生的学生名单

select *
from student
where year(Sage) = "1990";

31.    查询每门课程的平均成绩,结果按平均成绩降序排列,平均成绩相同时,按课程编号升序排列

select CId, avg(score) as avg_sc
from SC
group by CId
order by avg_sc desc, CId asc;

32.    查询平均成绩大于等于 85 的所有学生的学号、姓名和平均成绩

select s.SId, s.Sname, avg_sc
from student s
right join(select SId, avg(score) as avg_scfrom SCgroup by SIdhaving avg_sc >= 85) as a
on s.SId = a.SId;

33.    查询课程名称为「数学」,且分数低于 60 的学生姓名和分数

select s.SId, s.Sname, SC.CId, SC.score
from SC
left join student s
on SC.SId = s.SId
where CId = (select CIdfrom coursewhere Cname = "数学") and score < 60;

34.    查询所有学生的课程及分数情况(存在学生没成绩,没选课的情况)

select *
from student s
left join SC
on s.SId = SC.SId;

35.    查询任何一门课程成绩在 70 分以上的姓名、课程名称和分数

select s.Sname, c.Cname, SC.score
from SC
left join course as c
on SC.CId = c.CId
left join student s
on SC.SId = s.SId
where SC.score > 70;

36.    查询不及格的课程

select *
from course
where CId in (select distinct CIdfrom SCwhere score < 60);

37.    查询课程编号为 01 且课程成绩在 80 分以上的学生的学号和姓名

select s.SId, s.Sname
from student s
join SC
on s.SId = SC.SId
where SC.CId = "01" and SC.score > 80;

38.    求每门课程的学生人数

select CId, count(*)
from SC
group by CId;

39.    成绩不重复,查询选修「张三」老师所授课程的学生中,成绩最高的学生信息及其成绩

select s.*, SC.score
from student s, teacher th, course c, SC
where th.TId = c.TId
and SC.SId = s.SId
and SC.CId = c.CId
and th.Tname = "张三"
order by score desc
limit 1;

40.    成绩有重复的情况下,查询选修「张三」老师所授课程的学生中,成绩最高的学生信息及其成绩

select s.*, SC.score
from student s
join SC
on s.SId = SC.SId
join course c
on SC.CId = c.cId
join teacher th
on c.TId = th.TId
where th.Tname = "张三"
order by score desc
limit 0,1;

41.    查询不同课程成绩相同的学生的学生编号、课程编号、学生成绩

select distinct s.SId, s.Sname, a.CId, a.score, b.CId, b.score
from student s
join SC a
on a.SId = s.SId
join SC b 
on b.SId = s.SId
where a.CId != b.CId and a.score = b.score;

42.    查询每门功成绩最好的前两名

select s.*, a.*
from student s
left join (select SC.SId, SC.score, row_number()over (partition by SC.CId) ranksfrom SC) as a
on s.SId = a.SId
where a.ranks <= 2;

43.    统计每门课程的学生选修人数(超过 5 人的课程才统计)。

select SC.CId, count(*)
from SC
join course c
on SC.CId = c.CId
group by SC.CId
having count(*) > 5;

44.    检索至少选修两门课程的学生学号

select s.SId
from SC
join student s
on SC.SId = s.SId
group by SC.SId
having count(*) >= 2;

45.    查询选修了全部课程的学生信息

select s.*
from SC
join student s
on SC.SId = s.SId
group by SC.SId
having count(*) = (select count(*) from course);

46.    查询各学生的年龄,只按年份来算

select s.*, year(now()) - year(s.Sage) 年龄
from student s;

47.    按照出生日期来算,当前月日 < 出生年月的月日则,年龄减一

select s.*, timestampdiff(year, s.Sage, curdate()) 年龄
from student s;

48.    查询本周过生日的学生

select s.*
from student s
where weekofyear(s.Sage) = weekofyear(now());

49.    查询下周过生日的学生

select s.*
from student s
where weekofyear(s.Sage) = weekofyear(now()) + 1;

50.    查询本月过生日的学生

select s.*
from student s
where month(s.Sage) = month(now());

51.    查询下月过生日的学生

select s.*
from student s
where month(s.Sage) = month(now()) + 1;

相关文章:

MySQL经典50题

目录 一、数据表介绍 二、练习题 1. 查询" 01 "课程比" 02 "课程成绩高的学生的信息及课程分数 2. 查询同时存在" 01 "课程和" 02 "课程的情况 3. 查询存在" 01 "课程但可能不存在" 02 "课程的情况…...

常用的Qt开源库分享

1. Qwt (https://qwt.sf.net): Qwt是一个基于Qt的数据可视化库&#xff0c;提供了绘制曲线、图表、仪表盘等功能。 2. QJson (https://qjson.sourceforge.net): QJson是一个用于JSON数据解析和生成的库&#xff0c;使Qt应用程序能够方便地处理JSON格式的数据。 3. QCustomP…...

Unity开发授权系统

Unity开发授权系统 引子 因为有些客户尾款到账不及时&#xff0c;因此研究了一套授权系统&#xff0c;当授权到期后&#xff0c;系统就提示软件授权已到期&#xff0c;不能继续使用云云&#xff0c;这样方便尾款的收回。 大体需求就是 时间相关性&#xff0c;可以自由设置授…...

一周时间,开发了一款封面图生成工具

介绍 这是一款封面图的制作工具&#xff0c;根据简单的配置即可生成一张好看的封面图&#xff0c;目前已有七款主题可以选择。做这个工具的初衷来自平时写文章&#xff0c;都为封面图发愁&#xff0c;去图片 网站上搜索很难找到满意的&#xff0c;而且当你要的图如果要搭配上文…...

【.NET Core】深入理解异步编程模型(APM)

【.NET Core】深入理解异步编程模型&#xff08;APM&#xff09; 文章目录 【.NET Core】深入理解异步编程模型&#xff08;APM&#xff09;一、APM概述二、IAsyncResult接口2.1 BeginInvoke2.2 EndInvoke2.3 IAsyncResult属性2.4 IAsyncResult异步演示 三、通过结束异步操作来…...

pyqtgraph绘图类

pyqtgraph绘图类 pyqtgraph绘图有四种方法: 方法描述pyqtgraph.plot()创建一个新的QWindow用来绘制数据PlotWidget.plot()在已存在的QWidget上绘制数据PlotItem.plot()在已存在的QWidget上绘制数据GraphicsLayout.addPlot()在网格布局中添加一个绘图 上面四个方法都接收同样…...

C#6-10新增的内容

目录 异常筛选器 属性语法 表达式主体定义 Null 条件运算符 ?. 和 ?[] 使用 $ 的字符串内插 nameof 表达式 元组类型 模糊匹配 本地函数 Expression-bodied 成员 Reference 变量 ?、??和??= .. 模式匹配功能(C# 9) Record init c#8.NET Framework 4.8…...

【立创EDA-PCB设计基础】3.网络表概念解读+板框绘制

前言&#xff1a;本文对网络表概念解读板框绘制&#xff08;确定PCB板子轮廓&#xff09; 网络表概念解读 在本专栏的上一篇文章【嘉立创EDA-PCB设计指南】2&#xff0c;将设计的原理图转为了PCB&#xff0c;在PCB界面下出现了所有的封装&#xff0c;以及所有的飞线属性&…...

在Python环境中运行R语言的配环境实用教程

前情提要 在做一些生物信息与医学统计的工作&#xff0c;本来偷懒希望只靠python完成的&#xff0c;结果还是需要用R语言&#xff0c;倒腾了一会儿&#xff0c;调成功了&#xff0c;就记录一下这个过程。 我的环境&#xff1a; win10, pycharm, R-4.3.2 首先&#xff0c;我们…...

2023年总结我所经历的技术大变革

&#x1f4e2;欢迎点赞 &#xff1a;&#x1f44d; 收藏 ⭐留言 &#x1f4dd; 如有错误敬请指正&#xff0c;赐人玫瑰&#xff0c;手留余香&#xff01;&#x1f4e2;本文作者&#xff1a;由webmote 原创&#x1f4e2;作者格言&#xff1a;新的征程&#xff0c;我们面对的不仅…...

基于YOLOv7算法的高精度实时车载摄像头下车辆检测系统(PyTorch+Pyside6+YOLOv7)

摘要&#xff1a;基于YOLOv7算法的高精度实时车载摄像头下车辆检测系统可用于日常生活中检测与定位车辆&#xff0c;此系统可完成对输入图片、视频、文件夹以及摄像头方式的目标检测与识别&#xff0c;同时本系统还支持检测结果可视化与导出。本系统采用YOLOv7目标检测算法来训…...

深度学习(3)--递归神经网络(RNN)和词向量模型Word2Vec

目录 一.递归神经网络基础概念 二.自然语言处理-词向量模型Word2Vec 2.1.词向量模型 2.2.常用模型对比 2.3.负采样方案 2.4.词向量训练过程 一.递归神经网络基础概念 递归神经网络(Recursive Neural Network, RNN)可以解决有时间序列的问题&#xff0c;处理诸如树、图这样…...

【江科大】STM32:中断系统(理论)

文章目录 中断系统为什么要使用中断中断优先级中断嵌套STM32的中断系统如何管理这些中断NVIC的结构![请添加图片描述](https://img-blog.csdnimg.cn/c77b038fd63a4ddfbcd3b86f6dfe596b.png) 优先级窗口看门狗&#xff08;WWDG&#xff09;&#xff1a;外部中断模块的特性&#…...

JAVA 学习 面试(六)数据类型与方法

数据类型 基本数据类型 为什么float3.4报错 3.4 默认是浮点double类型的&#xff0c;如果赋值给float是向下转型&#xff0c;会出现精度缺失&#xff0c;&#xff0c;需要强制转换 Switch支持的数据类型&#xff1f; byte、short、int、char 、 enum 、 String 基本类型与包…...

Java 一个数组集合List<People> 赋值给另一个数组集合List<NewPeople> ,两个数组集合属性部分一致。

Java 一个数组集合List 赋值给另一个数组集合List &#xff0c;两个数组集合属性部分一致。 下面是一个Demo, 具体要根据自己的业务调整。 import java.util.ArrayList; import java.util.List;class People {private String name;private int age;private String address;publ…...

基于神经网络的电力系统的负荷预测

一、背景介绍&#xff1a; 电力系统负荷预测是生产部门的重要工作之一&#xff0c;通过准确的负荷预测&#xff0c;可以经济合理地安排机组的启停、减少旋转备用容量、合理安排检修计划、降低发电成本和提高经济效益。负荷预测按预测的时间可以分为长期、中期和短期负荷预测。…...

OpenCV第 1 课 计算机视觉和 OpenCV 介绍

文章目录 第 1 课 计算机视觉和 OpenCV 介绍1.机器是如何“看”的2.机器视觉技术的常见应用3.图像识别介绍4. 图像识别技术的常见应用5.OpenCV 介绍6.图像在计算机中的存储形式 第 1 课 计算机视觉和 OpenCV 介绍 1.机器是如何“看”的 我们人类可以通过眼睛看到五颜六色的世界…...

C++面试:stl的栈和队列介绍

目录 栈 栈&#xff08;stack&#xff09;的声明&#xff1a; push()&#xff1a; 将元素推入栈顶 pop()&#xff1a; 弹出栈顶元素 top()&#xff1a; 访问栈顶元素&#xff0c;但不弹出 empty()&#xff1a; 检查栈是否为空 size()&#xff1a; 返回栈中元素的数量 …...

从0开始学习C++ 第十二课:指针强化

第十二课&#xff1a;指针强化 学习目标&#xff1a; 理解常量指针与指针常量的区别。学习如何使用函数指针。掌握指针与数组的高级使用技巧。 学习内容&#xff1a; 常量指针与指针常量 概念&#xff1a; 常量指针是一个指向常量的指针&#xff0c;这意味着不能通过这个指针…...

mongodb和python交互

1. mongdb和python交互的模块 pymongo 提供了mongdb和python交互的所有方法 安装方式: pip install pymongo 2. 使用pymongo 2.1 导入pymongo并选择要操作的集合 数据库和集合能够自动创建 2.1.1 无需权限认证的方式创建连接对象以及集合操作对象 from pymongo import Mong…...

FFmpeg 低延迟同屏方案

引言 在实时互动需求激增的当下&#xff0c;无论是在线教育中的师生同屏演示、远程办公的屏幕共享协作&#xff0c;还是游戏直播的画面实时传输&#xff0c;低延迟同屏已成为保障用户体验的核心指标。FFmpeg 作为一款功能强大的多媒体框架&#xff0c;凭借其灵活的编解码、数据…...

Go 语言接口详解

Go 语言接口详解 核心概念 接口定义 在 Go 语言中&#xff0c;接口是一种抽象类型&#xff0c;它定义了一组方法的集合&#xff1a; // 定义接口 type Shape interface {Area() float64Perimeter() float64 } 接口实现 Go 接口的实现是隐式的&#xff1a; // 矩形结构体…...

基于Uniapp开发HarmonyOS 5.0旅游应用技术实践

一、技术选型背景 1.跨平台优势 Uniapp采用Vue.js框架&#xff0c;支持"一次开发&#xff0c;多端部署"&#xff0c;可同步生成HarmonyOS、iOS、Android等多平台应用。 2.鸿蒙特性融合 HarmonyOS 5.0的分布式能力与原子化服务&#xff0c;为旅游应用带来&#xf…...

【2025年】解决Burpsuite抓不到https包的问题

环境&#xff1a;windows11 burpsuite:2025.5 在抓取https网站时&#xff0c;burpsuite抓取不到https数据包&#xff0c;只显示&#xff1a; 解决该问题只需如下三个步骤&#xff1a; 1、浏览器中访问 http://burp 2、下载 CA certificate 证书 3、在设置--隐私与安全--…...

DIY|Mac 搭建 ESP-IDF 开发环境及编译小智 AI

前一阵子在百度 AI 开发者大会上&#xff0c;看到基于小智 AI DIY 玩具的演示&#xff0c;感觉有点意思&#xff0c;想着自己也来试试。 如果只是想烧录现成的固件&#xff0c;乐鑫官方除了提供了 Windows 版本的 Flash 下载工具 之外&#xff0c;还提供了基于网页版的 ESP LA…...

《基于Apache Flink的流处理》笔记

思维导图 1-3 章 4-7章 8-11 章 参考资料 源码&#xff1a; https://github.com/streaming-with-flink 博客 https://flink.apache.org/bloghttps://www.ververica.com/blog 聚会及会议 https://flink-forward.orghttps://www.meetup.com/topics/apache-flink https://n…...

佰力博科技与您探讨热释电测量的几种方法

热释电的测量主要涉及热释电系数的测定&#xff0c;这是表征热释电材料性能的重要参数。热释电系数的测量方法主要包括静态法、动态法和积分电荷法。其中&#xff0c;积分电荷法最为常用&#xff0c;其原理是通过测量在电容器上积累的热释电电荷&#xff0c;从而确定热释电系数…...

解读《网络安全法》最新修订,把握网络安全新趋势

《网络安全法》自2017年施行以来&#xff0c;在维护网络空间安全方面发挥了重要作用。但随着网络环境的日益复杂&#xff0c;网络攻击、数据泄露等事件频发&#xff0c;现行法律已难以完全适应新的风险挑战。 2025年3月28日&#xff0c;国家网信办会同相关部门起草了《网络安全…...

【无标题】湖北理元理律师事务所:债务优化中的生活保障与法律平衡之道

文/法律实务观察组 在债务重组领域&#xff0c;专业机构的核心价值不仅在于减轻债务数字&#xff0c;更在于帮助债务人在履行义务的同时维持基本生活尊严。湖北理元理律师事务所的服务实践表明&#xff0c;合法债务优化需同步实现三重平衡&#xff1a; 法律刚性&#xff08;债…...

小智AI+MCP

什么是小智AI和MCP 如果还不清楚的先看往期文章 手搓小智AI聊天机器人 MCP 深度解析&#xff1a;AI 的USB接口 如何使用小智MCP 1.刷支持mcp的小智固件 2.下载官方MCP的示例代码 Github&#xff1a;https://github.com/78/mcp-calculator 安这个步骤执行 其中MCP_ENDPOI…...