查询所有字段
select * from 表名
例:select * from students
查询指定字段
在select后面的列名部分,可以使用as为列起别名,这个别名出现在结果集中
select 列1,列2,… from 表名
– 表名.字段名
select students.name,students.age from students
– 可以通过 as 给表起别名
select s.name,s.age from students as s
– 如果是单表查询可以省略表明
select name,age from students
- 使用as给字段起别名
- select studentNo as 学号,name as 名字,sex as 性别 from students
消除重复行
在select后面列前使用distinct可以消除重复的行
select distinct 列1,… from 表名;
例:select distinct sex from students;
条件
使用where子句对表中的数据筛选,符号条件的数据会出现在结果集中语法如下:
select 字段1,字段2… from 表名 where 条件;
例:select * from students where id=1;
where后面支持多种运算符,进行条件的处理
比较运算
逻辑运算
模糊查询
范围查询
空判断
比较运算符
等于: =
大于: >
大于等于: >=
小于: <
小于等于: <=
不等于: != 或 <>
例1:查询小乔的年龄
select age from students where name=‘小乔’
例2:查询20岁以下的学生
select * from students where age<20
例3:查询家乡不在北京的学生
select * from students where hometown!=‘北京’
逻辑运算符
and
or
not
例1:查询年龄小于20的女同学
select * from students where age<20 and sex=‘女’
例2:查询女学生或’1班’的学生
select * from students where sex=‘女’ or class=‘1班’
例3:查询非天津的学生
select * from students where not hometown=‘天津’
模糊查询
like
%表示任意多个任意字符
表示一个任意字符例
1:查询姓孙的学生
select * from students where name like ‘孙%’
例2:查询姓孙且名字是一个字的学生
select * from students where name like '孙’
例3:查询叫乔的学生
select * from students where name like ‘%乔’
例4:查询姓名含白的学生
select * from students where name like ‘%白%’
范围查询
in表示在一个非连续的范围内
例1:查询家乡是北京或上海或广东的学生
select * from students where hometown in(‘北京’,‘上海’,‘广东’)
between … and …表示在一个连续的范围内
例2:查询年龄为18至20的学生
select * from students where age between 18 and 20
空判断
注意:null与’'是不同的判空is null
例1:查询没有填写身份证的学生
select * from students where card is null
判非空is not null
例2:查询填写了身份证的学生
select * from students where card is not null
排序
为了方便查看数据,可以对数据进行排序
语法:select * from 表名order by 列1 asc|desc,列2 asc|desc,…
将行数据按照列1进行排序,如果某些行列1的值相同时,则按照列2排序,以此类推
默认按照列值从小到大排列
asc从小到大排列,即升序
desc从大到小排序,即降序
例1:查询所有学生信息,按年龄从小到大排序
select * from students order by age
例2:查询所有学生信息,按年龄从大到小排序,年龄相同时,再按学号从小到大排序
select * from students order by age desc,studentNo
聚合函数
为了快速得到统计数据,经常会用到如下5个聚合函数
count()表示计算总行数,括号中写星与列名,结果是相同的
聚合函数不能在 where 中使用
例1:查询学生总数
select count() from students;
max(列)表示求此列的最大值
例2:查询女生的最大年龄
select max(age) from students where sex=‘女’;
min(列)表示求此列的最小值
例3:查询1班的最小年龄
select min(age) from students;
sum(列)表示求此列的和
例4:查询北京学生的年龄总和
select sum(age) from students where hometown=‘北京’;
avg(列)表示求此列的平均值
例5:查询女生的平均年龄
select avg(age) from students where sex=‘女’
分组
按照字段分组,表示此字段相同的数据会被放到一个组中
分组后,分组的依据列会显示在结果集中,其他列不会显示在结果集中
可以对分组后的数据进行统计,做聚合运算
语法:select 列1,列2,聚合… from 表名 group by 列1,列2…
例1:查询各种性别的人数
select sex,count() from students group by sex
例2:查询各种年龄的人数
select age,count() from students group by age
分组后的数据筛选语法:
select 列1,列2,聚合… from 表名group by 列1,列2,列3…having 列1,…聚合…
having后面的条件运算符与where的相同
例1:查询男生总人数
方案一:select count() from students where sex=‘男’
方案二:select sex,count() from students group by sex having sex=‘男’
对比where与having
where是对from后面指定的表进行数据筛选,属于对原始数据的筛选
having是对group by的结果进行筛选
获取部分行
当数据量过大时,在一页中查看数据是一件非常麻烦的事情
语法
select * from 表名limit start,count
从start开始,获取count条数据
start索引从0开始
例1:查询前3行学生信息
select * from students limit 0,3
分页
已知:每页显示m条数据,求:显示第n页的数据
select * from students limit (n-1)*m,m
求总页数
查询总条数p1
使用p1除以m得到p2
如果整除则p2为总数页
如果不整除则p2+1为总页数