前言
前面我们学习了DDL和DML,学会了如何定义数据表,以及如何去根据需求来实现属性的约束,现在我们将学习如何利用DQL语言查询数据表中的类容,前半部分我们将讲解基本类容,后面会引进刷题网站中的题目进行讲解。
一.DQL
一.DQL数据查询语言
– 用于查询数据库中的数据表数据.
1.SQL查询语句
查询关键字:select
查询语句的基本结构:select <属性名> from [数据库名].表名<查询条件>;
2.查询所有字段
基本格式:
select * from <表名>; -- "*"表示所有字段;
3.查询指定字段
基本格式:select <属性名> from <表名>;
eg:select s_id,s_name from student;
二.DQL单表查询
1.基本条件查询
基本格式:select <属性名> from <表名> where 【条件】;
条件运算符:<,>,<=,>=,=,!=(<>),(不存在==);
例如:select s_id from student where s_id>3
2.多条件查询
基本格式:select <属性名> from [数据库名].表名 where [约束条件1,约束条件2·····];
逻辑运算符:AND/and(&&),OR/or(||)
例如:select s_id from student where s_id>3 and s_id<5;
3.范围查找
范围查找关键字:between ·······and·······;
例如:select s_id from student where s_id between 5 and 8; -- 在5到8的范围类查找;
select s_id from student where s_id not between 5 and 8 ;-- 在5到8 的范围之外查找
4.集合范围类查找
集合范围类查找的关键字:in
①.在集合范围类查找:
select s_name from student where s_id in(1,2,3,4,5,6); -- 查找学号在1,2,3,4,5,6这些条件下的s_name;
②.在集合之外查找
select s_name from student where s_id not in (1,2,3,4,5,6);
这里的语法和python中的语法相似,如果会python的可以i联想记忆;
5.字符串模糊匹配
模糊匹配 :like(用于字符串模糊匹配)
①.通配符:%:匹配0个,1个或者多个字符;
select s_id from student where s_name like "%小%";
匹配属性s_name中含有小字的记录,前后任意个字符,例如“王二小”,“李小华”;
②.通配符:_:匹配一个字符
select s_name from student where s_name like "小_";
匹配属性s_name中以小开头,且后面只有一个字符的元组,例如:"小华"
6.空值查询
①.查询空值
select s_name from student where s_name is null;
查询属性s_name中取值为空的记录;
②.查询非空值 is not null
select s_name from student where s_name is not null;
查询属性s_name不为空的记录;
7.分页查询
分页:limit[偏移量n,记录条数m],是指查询从第n+1开始记录后面m+1的数据,偏移量n默认为0;和python中的索引相似;
select s_id from student limit 3,6;
8.合并查询
合并:union(合并)(union all(合并所有))
临时结果集:select语句查询的结果是一个虚拟表(临时表)。
— union 合并:去重
select 3,"abcde" union select 4,"achde";
注意:合并的多个查询结果必须列的数量相同;
— union all(合并):不去重,合并所有;
select 3,"abcde" union all select 3,"abcde";
9.排序查询
排序查询关键字:order by
对查询结果的排序默认是按照升序的,如果要使用降序,则后面加desc;
例如:默认升序排序:select * from student order by s_id;
降序排序:select * from student order by s_id desc;
10.分组排序
分组:group by;
分组统计:
select count(s_id) as 男学生人数 from db_2.student group by s_sex having s_sex="男";
注意:分组查询中使用条件约束的时候用的是having关键字,不是where关键字;