一、按关键字排序
使用order by语句来实现排序
排序可针对一个或多个字段
asc:升序,默认排序方式
desc:降序
1.按单字段排序
[root@localhost ~]# mysql -uroot -p123456
这是已经创建好的表
mysql> select id,name,score from info order by score desc; #按分数排序,指定降序desc
mysql> select id,name,score from info order by score; #按分数排序,使用默认的升序asc,因为是默认,asc可以不输
2.条件查询
order by还可以结合where进行条件过滤,筛选地址是杭州的学生按分数降序排列
mysql> select name,score from info where address='hangzhou' order by score desc;
3.多字段排序
order by之后的参数,使用","分割,优先级是按先后顺序而定
mysql> select id,name,hobby from info order by hobby desc,id;
order by 之后的第一个参数只有在出现相同的数值,第二个字段才有意义
mysql> select id,hobby from info order by id,hobby desc;
二、区间判断及查询不重复记录
AND/OR ——且/或
mysql> select * from info where score > 70 and score <=90;
mysql> select * from info where score >70 or score <=90;
嵌套/多条件
mysql> select * from info where score > 70 or (score >75 and score <90);
distinct 查询不重复记录
语法:select distinct 字段 from 表名;
mysql> select distinct hobby from info;
mysql> select name,hobby from info where hobby in (select distinct hobby from info); #试一试能不能去重
1.distinct必须放在最开头
2.distinct只能使用需要去重的字段进行操作。
也就是说我distinct了name , hobby两个字段,我后面想根据id进行排序,是不可以的,因为只能name,age两个字段进行操作.
3.distinct去重多个字段时,含义是:几个字段同时重复时才会被过滤。
三、对结果进行分组
通过 SQL 查询出来的结果,还可以对其进行分组,使用 GROUP BY 语句来实现 ,GROUP BY 通常都是结合聚合函数一起使用的,常用的聚合函数包括:计数(COUNT)、 求和(SUM)、求平均数(AVG)、最大值(MAX)、最小值(MIN),GROUP BY 分组的时候可以按一个或多个字段对结果进行分组处理。
语法:
select column_name, aggregate_function(column_name)FROM table_name WHERE column_name operator valueGROUP BY column_name;
例:对info进行分组,筛选范围/条件是score大于等于45的 ‘name’,score相同的会默认分在一个组
mysql> select count(name),score from info where score>=45 group by score;
分组排序
对info表中兴趣(hobby)相同的id进行数量统计,并按照相同hobby进行分组
mysql> select count(id),hobby from info group by hobby;
基于上一条操作,结合order by把统计的id数量进行按降序序排列
mysql> select count(id),hobby from info group by hobby order by count(id) desc;
分组条件
结合where语句,筛选分数大于等于80的分组,计算学生个数按降序排列
mysql> select count(name),score,hobby from info where score>=80 group by hobby order by count
(name) desc;
四、限制结果条目
limit 限制输出的结果记录
在使用 MySQL select 语句进行查询时,结果集返回的是所有匹配的记录(行)。有时候仅需要返回第一行或者前几行,这时候就需要用到 LIMIT 子句
语法:
select column1, column2, ... FROM table_name LIMIT [offset,] number
LIMIT的第一个参数是位置偏移量(可选参数),是设置 MySQL从哪一行开始显示。 如果不设定第一个参数,将会从表中的第一条记录开始显示。需要注意的是,第一条记录的位置偏移量是0,第二条是1,以此类推。第二个参数是设置返回记录行的最大数目。
mysql> select * from info limit 3; #查询所有信息显示前4行记录
mysql> select * from info limit 3,3; #从第4行开始,往后显示3行内容
select id,name from info order by id limit 3; #结合order by语句,按id的大小升序排列显示前三行
mysql> select id,name from info order by id desc limit 3; #结合order by语句,按id的大小升序排列显示最后三行
小结:limit是做为位置偏移量的定义,他的起始是从0开始,而0表示的是字段
五、设置别名
alias ——》as
在MySQL查询时,当表的名字比较长或者表内某些字段比较长时,为了方便书写或者多次使用相同的表,可以给字段列或表设置别名。使用的时候直接使用别名,简洁明了,增强可读性。
语法:
对于列的别名:select column_name as alias_name from table_name;
对于表的别名:select column_name(s) from table_name as alias_name;
在使用as后,可以用alias_name代替table_name,其中as语句是可选的。
as之后的别名,主要是为表内的列或者表提供临时的名称,在查询过程中使用,库内实际的表名或字段名是不会被改变的
例:列别名设置
mysql> select name as 姓名,score as 成绩 from info as i;
mysql> select count(*) as number from info; #查询info表的字段数量,以number显示
使用场景:
1、对复杂的表进行查询的时候,别名可以缩短查询语句的长度
2、多表相连查询的时候(通俗易懂、减短sql语句)
此外,AS 还可以作为连接语句的操作符。
mysql> create table t1 as select * from info; #创建t1表,将info表的查询记录全部插入t1表
此处AS起到的作用:
1、创建了一个新表t1 并定义表结构,插入表数据(与info表相同)
2、但是”约束“没有被完全”复制“过来 。但是如果原表设置了主键,那么附表的:default字段会默认设置一个0
mysql> create table t1 (select * from info); #克隆、复制表结构
六、通配符
通配符主要用于替换字符串中的部分字符,通过部分字符的匹配将相关结果查询出来。
通常通配符都是跟like(模糊查询) 一起使用的,并协同where子句共同来完成查询任务。
常用的通配符有两个,分别是:
%:百分号表示零个、一个或多个字符
_:下划线表示单个字符
mysql> select id,name from info where name like 'c%'; #查询名字是c开头的记录
mysql> select id,name from info where name like 'c_ic_i'; #查询名字里是c和i中间有一个字符的记录
mysql> select id,name from info where name like '%g%'; #查询名字中间有g的记录
mysql> select id,name from info where name like 'hanmei___'; #查询hanmei后面3个字符的名字记录
#通配符“%”和“_”不仅可以单独使用,但可以组合使用
mysql> select id,name from info where name like 'l%_'; #查询名字以l开头的记录
七、子查询
子查询也被称作内查询或者嵌套查询,是指在一个查询语句里面还嵌套着另一个查询语 句。子查询语句是先于主查询语句被执行的,其结果作为外层的条件返回给主查询进行下一步的查询过滤。
PS: 子语句可以与主语句所查询的表相同,也可以是不同表
相同表:
in: 将主表和子表关联/连接的语法
主语句:select name,score from info where id;
子语句(集合): select id from info where score >80;
PS:子语句中的sql语句是为了,最后过滤出一个结果集,用于主语句的判断条件
mysql> select name,score from info where id in(select id from info where score >80);
不同表/多表示例:
mysql> create table kk (id int(4));
mysql> insert into kk values(1),(2),(3);
mysql> select id,name,score from info where id in (select * from kk);
子查询不仅可以在select语句中使用,在inert、update、delete中也同样适用。在嵌套的时候,子查询内部还可以再次嵌套新的子查询,也就是说可以多层嵌套。
子查询还可以用在 insert 语句中。子查询的结果集可以通过insert 语句插入到其他的表中
mysql> insert into t1 select * from info where id in (select id from info); #将t1里的记录全部删除,重新插入info表的记录
mysql> select * from t1;
update 语句也可以使用子查询。update 内的子查询,在 set 更新内容时,可以是单独的一列,也可以是多列。
mysql> update info set score=70 where id=8; #将caicai的分数改为70
delete也适用于子查询
mysql> delete from info where select id where score>80); #删除分数大于80的记录
在 IN 前面还可以添加 NOT,其作用与 IN 相反,表示否定(即不在子查询的结果集里面)
mysql> select id,name,score from t1;
mysql> delete from t1 where id not in (select id where score>=80); #删除分数不是大于等于80的记录
mysql> select * from t1;
子查询-exists
EXISTS 这个关键字在子查询时,主要用于判断exists之后的条件是否成立,如果成立,则正常执行主语句的匹配,如不成立,则不会执行主语句查询,
如子查询结果集不成立的话,输出为null
加exists
:只是为了判断exists之后的条件是否成立,如果成立,则正常执行主语句的匹配,如不成立,则不会执行主语句查询
PS: count为计数,sum为求和,使用sum求和结合exists,如子查询结果集不成立的话,输出为null
select count(*) from info where exists(select id from info where score<10); #查询如果存在分数小于10的记录则计算info的字段数,info表没有小于10的,所以返回0
子查询,别名as
mysql> select id,name from info; #查询info表id,name 字段
以上命令可以查看到info表的内容
将结果集做为一张表进行查询的时候,我们也需要用到别名。
需求:从info表中的id和name字段的内容做为"内容" 输出id的部分
mysql> select id from (select id,name from info);
ERROR 1248 (42000): Every derived table must have its own alias
#此时会报错,原因为:
select * from 表名 此为标准格式,而以上的查询语句,"表名"的位置其实是一个结果集,mysql并不能直接识别,而此时给与结果集设置一个别名,以”select a.id from a“的方式查询将此结果集是为一张"表",就可以正常查询数据了
如下:
mysql> select a.id from (select id,name from info) a;
相当于
mysql> select info.id,name from info;