2020年2月22日日报 崔帅霞

2020年2月22日日报 崔帅霞

知识点及示例:

1.用子查询,来查找来自安徽的学生的语文成绩。

select score from cuishuaixiascore where kemu ='语文'and stuid in (select stuid from cuishuaixiastudent where address='安徽')

 

 2.用两表联查的方式, 来查找王五的语文成绩。

select cuishuaixiastudent.name as '姓名',cuishuaixiascore.score as 语文成绩

from cuishuaixiastudent inner join cuishuaixiascore on cuishuaixiastudent.stuid = cuishuaixiascore.stuid

where cuishuaixiastudent.name='王五' and cuishuaixiascore.kemu='语文'

 

3.用两表联查的方式, 来查找来自安徽的学生的语文成绩。

select cuishuaixiastudent.address as 地址,cuishuaixiascore.score as 语文成绩

from cuishuaixiastudent inner join cuishuaixiascore on cuishuaixiastudent.stuid = cuishuaixiascore.stuid

where cuishuaixiastudent.address='安徽' and cuishuaixiascore.kemu='语文'

 

4.看视频Linux->日志介绍-》日志介绍,理解日志是做什么用的,学会看JMeter的日志。

日志:详细记录了程序做了什么事,如果程序出现问题,可以通过查看日志,分析问题,一个网站,一个系统一定会有日志。

日志级别: ERROR错误日志;WARN 警告日志;INFO 即 information 信息日志;DEBUG 调试日志,非常详细;

5.看视频 Windows基础-》制作win10U盘安装盘 有U盘的自己制作-个U盘安装盘。

下载MediaCreationTool1930.exe

U盘至少为8G内存

6.Mock测试的视频, 执行视频中

7.用Fiddler返回500状态码。

猜你喜欢

转载自www.cnblogs.com/cuishuaixia/p/12350392.html