4.DQL(查询数据){SUPER 重点}

4.1DQL

(Data Query Language : 数据查询语言)

-所有的查询操作; Select

数据库中最核心的语言


 create database `school`;--创建数据库school
 use `school`;--使用school数据库
 ​
 drop table if EXISTS `grade`;--删除grade历史表
 ​
 create table `grade`( --创建表grade
  `GradeID` int(11) not null auto_increment comment '年级编号',
  `GradeName` varchar(50) not null comment '年级名称',
  primary key(`GradeID`)
 )engine = innodb auto_increment=6 default CHARSET=utf8;
 ​
 --插入数据
 insert into `grade`(`GradeID`,`GradeName`)values(1,'大一'),(2,'大二'),(3,'大三'),(4,'大四');
 ​
 --删除result历史表
 drop table if exists `result`;
 ​
 --创建表result
 create table `result`(
  `StudentNo` int(4)  not null comment '学号',
  `SubjectNo` int(4) not null comment '课程编号',
  `ExamDate` TIMESTAMP not null comment '考试日期',
  `StudentResult` int(4) not null comment '考试成绩',
  key `SubjectNo`(`SubjectNo`)
 )engine = innodb default charset=utf8;
 ​
 --插入数据
 insert into `result`(`StudentNo`,`SubjectNo`,`ExamDate`,`StudentResult`)values(100,101,'2020.1.1',88);
 ​
 --删除student历史表
 drop table if exists `student`;
 ​
 --建表student
 create table `student`(
  `StudentNo` int(4) not null comment '学号',
  `LoginPwd` varchar(20) DEFAULT null,
  `StudnetName` varchar(20) DEFAULT null comment '学生姓名',
  `Sex` tinyint(1) default null comment '性别,取值0或1',
  `GradeId` int(11) default null comment '年级编号',
  `Phone` varchar(40) not null comment '联系电话,允许为空,可选输入',
  `Address` varchar(255) not null comment '地址,允许为空',
  `BornDate` TIMESTAMP default null comment '出生日期',
  `Email` varchar(50) not null comment '邮箱账号',
  `IdentityCard` varchar(18) default null comment '身份证号',
  PRIMARY key (`StudentNo`),
  UNIQUE key `IdentityCard`(`IdentityCard`),
  key `Email`(`Email`)
  )engine=MYISAM default charset=utf8;
 
 
 --建表
  create table `subject`(
  `SubjectNo` int(11) not null auto_increment comment '课程编号',
  `SubjectName` varchar(40) default null comment '课程名称',
  `ClassHour` int(4) default null comment '学号',
  `GradeId` int(4) default null comment '年级编号',
  primary key(`SubjectNo`)
  )engine=innodb auto_increment=18 default charset=utf8;
 

4.2指定查询字段

-查询表中所有的数据&指定数据

 --select * from 表名; 查询所有的表数据
 --完整语法 select 去重选项 字段列表 [as 字段别名] from 数据源 [where子句] [group by 子句] [having子句] [order by 子句] [limit子句];
 --select 字段1,... from 表名;
 select * from `student`;
 select `StudentNo`,`Address` from `student`;

-别名设置

 --别名as语句 给结果起一个新名字
 --可以给字段和表起别名
 select `StudentNo` as 学号,`Address`as 地址 from `student`;

-函数

 --函数 Concat(a,b)
 select concat('姓名:',StudentName) as 新名字 from student;

去重 distinct

 --去重复值
 select distinct `StudentNo` from result;
 ​
 -- 所有成绩加一分
 select `StudentNo`,`StudentResult`+1 as '加分后成绩' from result;

查看当前系统版本

 --查看当前版本 函数
 select version();

用来计算

 -- 用于计算 表达式
 select 100*2-4 as 计算;

4.3where条件子句

作用:检索数据中符合条件的值

搜索的条件为一个或者多个表达式组成,结果为布尔值

逻辑运算符(英文状态下)

逻辑运算符 语法 描述
and && a and b(a && a) 逻辑与,两个值都为真时,结果为真
or || a or b(a || b) 逻辑或,两个值中有一个值为真,结果为真
not ! not a (!a) 逻辑非,做取反操作
 --查询学生中成绩大于等于95小于等于100的学生学号以及分数
 select `StudentNo`,`StudentResult` from result
 where `StudentResult`>=95 and `StudentResult`<=100;
 ​
 --between and 用法
 select `StudentNo`,`StudentResult` from result
 where `StudentResult` between 81 and 100;
 ​
 --!的用法
 select `StudentNo`,`StudentResult` from result
 where `StudentNo` != 1001;

4.4模糊查询

模糊查询:比较运算符

运算符 语法 描述
is null a is null 如果a为空,则结果为真
is not null a is not null 如果a不为空,则结果为真
between a between b and c 如果a在b和c之间,则结果为真
like a like b SQL匹配,如果a匹配b,则结果为真
in a in(a1,a2,a3...) 假设a在a1,a2,a3...其中某一个值中,则结果为真
 -- =======================模糊查询===============
 ​
 -- =========like==========
 select `StudentNo`,`StudentName` from student
 where `StudentName` like 'R%';
 ​
 select `StudentNo`,`StudentName` from student
 where `StudentName` like 'R___';
 ​
 select `StudentNo`,`StudentName` from student
 where `StudentName` like '%o%';
 ​
 -- =======in(具体的一个或者多个值)========
 ​
 select `StudentNo`,`StudentName` from student
 where `StudentNo` in (1001,1002);
 ​
 select `StudentNo`,`StudentName` from student
 where `Address` in ('克利夫兰');
 ​

4.5联表查询

JOIN 对比

 -- =======================联表查询========================
 ​
 --查询了参加了考试的同学(学号、姓名、科目编号、分数)
 /*
 思路:
  1、分析需求,分析查询的字段来自哪些表(连接查询)
  2、确定使用哪些连接查询 7中
  3、确定一个交叉数据
  4、判断条件:学生表中的 StudentNo = 成绩表中的 StudentNo
 */
 ​
 -- inner join 求交集
 select s.StudentNo,StudentName,SubjectNo,StudentResult
 from `student` as s
 inner join `result` as r
 where s.studentNo=r.studentNo;
 ​
 ​
 -- right join
 select s.StudentNo,StudentName,SubjectNo,StudentResult
 from `student` as s
 right join `result` as r
 on s.studentNo = r.studentNo;
 ​
 -- left join
 select s.StudentNo,StudentName,SubjectNo,StudentResult
 from `student` as s
 left join `result` as r
 on s.studentNo = r.studentNo;
 ​
 /*
 参加考试同学信息:学号、学生姓名,科目名、分数
 三个表 student subject result
 */
 select s.StudentNo,StudentName,SubjectName,StudentResult
 from student s
 right join result r
 on r.StudentNo=s.StudentNo
 inner join `subject` sub
 on r.SubjectNo=sub.SubjectNo;
 ​
操作 描述
inner join 如果表中至少有一个匹配,就返回行
left join 即使右表中没有匹配,也会从左表中返回所有的值
right join 会从左表中没有匹配,也会从右表中返回所有的值

join on(判断的条件) 连接查询

where(连接的表) 等值查询

自连接

自己和自己连接;核心:一张表拆为两张一样的表

父类

categoryid categoryName
2 信息技术
3 软件开发
4 数据库
5 Web开发

子类

**

pid categoryid categoryName
1 2 信息技术
1 3 软件开发
3 4 数据库
1 5 Web开发
 create table `category`(
  `categoryid` int(10) UNSIGNED not null auto_increment comment '主题id',
  `pid` int(5) not null comment '父id',
  `categoryName` varchar(40) not null comment '主题名字',
  primary key (`categoryid`)
 )engine=innodb auto_increment=9 default charset=utf8;
 ​
 insert into `category`(`categoryid`,`pid`,`categoryName`)
 values(2,1,'信息技术'),
 (3,1,'软件开发'),
 (4,3,'数据库'),
 (5,1,'Web开发'),
 (6,4,'PS技术');
 ​
 -- 查询父子信息 --把一张表看成两张一模一样的表
 select a.`categoryName`as '父栏目',b.`categoryName` as '子栏目'
 from `category` as a ,`category` as b
 where a.`categoryid`=b.`pid`;
 ​

4.6分页和排序

排序

 -- =========分页limit 和 排序order by===========
 ​
 -- 排序:升序 ASC;降序 DESC
 ​
 select s.`StudentNo`,`StudentName`,`SubjectName`,`StudentResult`
 from student s
 inner join `result` r
 on s.StudentNo=r.StudentNo
 inner join `subject` sub
 on r.SubjectNo=sub.SubjectNo
 where subjectName = '软件工程'
 order by `StudentResult` desc;
 ​

分页

 -- =========分页limit 和 排序order by===========
 ​
 -- 排序:升序 ASC;降序 DESC
 ​
 select s.`StudentNo`,`StudentName`,`SubjectName`,`StudentResult`
 from student s
 inner join `result` r
 on s.StudentNo=r.StudentNo
 inner join `subject` sub
 on r.SubjectNo=sub.SubjectNo
 where subjectName = '软件工程'
 order by `StudentResult` desc;
 ​
 ​
 -- 分页;每页显示一条数据
 -- 语法:limit 起始位置,页面的大小
 -- limit 0,1 1到2的数据
 select s.`StudentNo`,`StudentName`,`SubjectName`,`StudentResult`
 from student s
 inner join `result` r
 on s.StudentNo=r.StudentNo
 inner join `subject` sub
 on r.SubjectNo=sub.SubjectNo
 where subjectName = '软件工程'
 order by `StudentResult` asc
 limit 0,1;
 ​

语法:limit(查询起始下标,pageSize)

4.7子查询

本质:在where语句中嵌套一个子查询语句

where (select * from ...)

 -- ======子查询=========
 -- 由里及外
 select `StudentNo`,`SubjectNo`,`StudentResult`
 from `result`
 where `StudentNo` = (select SubjectNo from `subject`
 where SubjectName = '软件工程'
 );
 ​
 select `StudentNo`,`StudentName`
 from `student` s
 where `StudentNo`=(
 select `StudentNo` from `result`
 where `StudentResult` > 80
 limit 1
 );

4.8.分组和过滤

 select SubjectName,AVG(StudentResult) as '平均分'
 from result r
 inner join `subject` sub
 on r.`SubjectNo`=sub.`SubjectNo`
 GROUP BY r.`SubjectNo` -- 分组
 HAVING 平均分 > 80;  -- 过滤(和where一样效果,知识位置不同,在group by后面)

DQL_MySQL的更多相关文章

随机推荐

  1. 入门大数据---Kylin是什么?

    一.Kylin是什么? Apache Kylin是一个开源的.分布式的分析型数据仓库,提供Hadoop/Spark 上的SQL查询接口及多维度分析(OLAP)能力以支持超大规模的数据,最初由eBay开 ...

  2. 面试官:你精通多少种语言的 Hello World?

    Hello World,是程序员入门编程语言的第一课.不论是C.C++还是Java ,我们写的第一个程序就是它了,还记得小编在大一C语言课上,花了一整节课时间才把它打印到控制台上.万事开头难啊,相信看 ...

  3. SpringBoot--异常统一处理

    先上代码,不捕获异常和手动捕获异常处理: @GetMapping("/error1") public String error1() { int i = 10 / 0; retur ...

  4. SpringBoot中VO,DTO,DO,PO的概念、区别和用处

    版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明.本文链接:https://blog.csdn.net/zhuguang10/article/de ...

  5. windows 创建python独立开发环境

    参考廖雪峰教程:https://www.liaoxuefeng.com/wiki/1016959663602400/1019273143120480 进去的方式需要修改,找到自己创建的文件目录 在控制 ...

  6. 【PyMuPDF和pdf2image】Python将PDF转成图片

    前言: 在最近的测试中遇到一个与PDF相关的测试需求,其中有一个过程是将PDF转换成图片,然后对图片进行测试. 粗略的试了好几种方式,其中语言尝试了Python和Java,总体而言所找到的Python ...

  7. centos7-解决vim无法找到问题

    vim编辑器是Linux中的强大组件,是vi编辑器的加强版 在Linux命令行输入vim时提示:-bash:vim:common not found,之后按着查询到的解决办法整好了:   解决步骤如下 ...

  8. json转化为C#、Java、TypeScript、VisualBasic、Python实体类

    效果展示: 源码下载地址:https://github.com/doyoulaikeme/DotNetSample/tree/master/DotNetSample2

  9. day23 作业

    day23 作业 目录 day23 作业 1.把登录与注册的密码都换成密文形式 2.文件完整性校验(考虑大文件) 3.注册功能改用json实现 4.项目的配置文件采用configparser进行解析 ...

  10. Mysql 实例:mysql语句练习50题(sqlalchmy写法)

    为了练习sql语句,在网上找了一些题,自己做了一遍,收益颇多.很多地方换一种思路,有更好的写法,欢迎指正. 题目地址:https://blog.csdn.net/fashion2014/article ...