2020年2月22日-日报

1.SQL语句训练

(1)查询来自安徽的学生的语文成绩-使用子查询

         select score from liuqingscore where kemu='chinese',stuid in (select stuid from liuqingstudent where address='安徽' )

(2)查询王五的语文成绩-使用俩表联查

         select * from liuqingstudent  inner join  liuiqngstudent on liuiqngscore.stuid = liuqingstudent.stuid where name='王五' and kenu='chinese'

  (3)  查询安徽学生的语文成绩-使用俩表联查

         select * from liuqingscore inner join liuqingstudent on liuqingscore.stuid = liuqingstudent .stuid where address='安徽' and kenu='chinese'

 2.日志的介绍

    (1)通过日志可以了解程序发生了什么事情

    (2)一个网站,一个系统,一定会有日志。

    (3)日志的级别:error错误日志,warn警告日志,info信息日志,debug调试日志,trace

    (4)jmeter中也有日志

3.Mock测试:下断点修改点赞数据

4.使用fiddler断点返回500状态码

猜你喜欢

转载自www.cnblogs.com/LiuQingBlog/p/12350215.html