(一)使用select语句,用order by来进行排序
1、select id,name from info order by 列名;
2、ASC:升序排序,默认就是升序,可以不加
(1)select id,name from info order by id;
3、desc:降序排序,需要添加
(1)select id,name from info order by id desc;
4、使用order by,结合where条件进行过滤
(1)select name,score from info where address='南京西路' ORDER BY score desc;
(2)select id,name,score from info where sex='女' ORDER BY id desc,score desc;
(只有第一个参数出现相同值时,也就是出现重复值时,第二个才会按照要求排序)
(二)区间判断查询和去重查询
1、and:且
select * from info where score > 80 and score <=90;
2、or:或
select * from info where score > 80 or score < 90;
3、嵌套条件:
(1)select * from info where score > 70 and ( score > 75 and score < 90 );
(2)select * from info where sex='男' and ( score > 80 and score < 90);
4、去重查询(重点)
(1)select distinct sex from info;
(2)select DISTINCT address from info where score = 90 and sex='男' ;
(三)分组查询:group by语句(一般结合聚合函数使用)
1、聚合函数(使用聚合函数,必须要加group by)
(1)count():统计有多少行
(2)sum():列的值相加,求和
(3)avg():列的值求平均数
(4)max():过滤出列的最大值
(5)min():过滤出列的最小值
2、分组
(1)分组的时候可以按照一个字段,也可以按照多个字段对结果进行分组
(2)分组的条件,要选用有多个重复值的列,过滤条件要用having语句过滤
3、格式:select count(name),sex from info GROUP BY sex;
4、统计行数count()
(1)select count(name),sex from info GROUP BY sex;
(2)根据where条件筛选,score>80
select count(name),sex,score from info where score >= 80 GROUP BY sex;
5、求和
(1)以地址为分组,对score求和
select sum(score),address from info group by address;
6、求平均值
(1)select avg(score),sex from info GROUP BY sex;
7、最小值
(1) select min(score),sex,name from info GROUP BY sex;
8、group by使用having语句实现条件过滤(having)
(1)select avg(score),address from info group by address having avg(score) > 60 ;
(2)按照地址分组,求成绩的平均值,然后>50,按照id的降序排序
select avg(score),address,id from info GROUP BY address having avg(score) > 50 order by id desc;
(3)统计name的行数,然后计算出学生的个数,然后把成绩也查出来,然后按照统计出来的学生个数,升序排列,按照地址分组,学生的成绩>=70
select count(name),score,address from info GROUP BY address having score >= 70 ORDER BY count(name) ;
(4)按照性别分组,求出男生和女生的最大成绩,最大成绩是否超过75分,满足条件的过滤出来
select max(score),sex from info GROUP BY sex having max(score) > 75 ;
(四)limit(限制输出的结果记录,查看表中的指定行)
1、格式:select * from info limit 3
2、select * from info limit 5,3;
3、快速查看后几行
(1)select * from info order by id desc limit 3;
(五)通配符
1、通配符
(1)通配符:主要用于替换字符串中的部分字符,通过部分字符的匹配将相关的结果查询出来
(2)通配符和like一起使用,使用where语句一起完成查询
(3)通配符可以结合在一起使用
2、通配符的种类
(1)%:表示0个、1个、或者多个
(2)_:表示单个字符
3、格式
(1)以什么为开头:select * from info where address like ' 南% ';
(2)以什么为结尾:select * from info where address like ' %西 ';
(3)表示内容当中包含:select * from info where address like ' %西路% ';
(4)表示单个字符:select * from info where name like ' 小_A ';
(5)结合使用:select * from info where address like ' 山%__ ';