直接查询
select 字段 from 表名;
举例:查询表中学生的名字
select name from student;
条件查询
select 字段 from 表名 where 条件
举例:查询表中年龄等于12的学生姓名
select name from studnet where age =12
模糊查询
select 字段 from 表名 where 字段 like ‘%想要查询的%’
举例:从student表中查询name中含义'王'的所有记录
select * from student where name like '%王%'
算术运算符
>(大于), <(小于), =(等于), !=(不等于), <>(不等于), >=(大于等于), <=(小于等于)
举例:从student表中找出年龄小于15的所有记录
select * from student where age < 15;
逻辑运算符
and(且), or(或), not(非)
举例:从student表中找出年龄等于15或者性别是man的所有记录
select * from student where age = 15 or sex = 'man';
in与not in运算符
select 字段 from 表名 where 字段 in(列表)
举例:从 student 表中查询 age 为 (13, 14, 15) 之间的所有记录
select * from student where age in(13, 14, 15)
排序查询
select 字段 from 表名 order by 字段 排序方式(升序 asc, 降序 desc)
举例:从 student 表中查询所有记录并按照 age 升序排序
select * from student order by age asc
范围运算
select 字段 from 表名 where 字段 between 范围1 and 范围2;
举例:从 student 表中查询 age >= 13 and age <= 15 的所有记录
它等价于 select * from student where age >= 13 and age <= 15
select * from student where age between 13 and 15
限制查询
limit可以限制制定查询结果的记录条数
select 字段 from 表名 limit n, m
举例:从 student 表中查询第三行到第五行的记录,但要注意的是 0 表示第一行记录,也是从 0 开始
select * from student limit 3, 5
嵌套查询
嵌套查询也就是在查询语句中包含有子查询语句,所以叫嵌套查询,没有单独的语法,嵌套子查询通常位于查询语句的条件之后
举例:查询 student 表中 (engScore 表中 score = 100 的 name)的 name,age 记录
也就是说通过查询 engScore 表中的一百分得到姓名,然后用这个姓名当作条件查询 student 表中的姓名与年龄
select name, age from student where name = (select name from engScore where score = 100)
多表查询
与嵌套查询一样,都需要一个共同字段,然后将多个表连接在一起查询,将符合条件的记录组成一个合集
常用以下三种连接方式:
内连接、左连接、右连接的区别 具体看
数据库中的内、外、左、右连接
内连接
select 字段 from 表1 inner join 表2 on 表1.字段 = 表2.字段;
根据两个表中共有的字段进行匹配,然后将符合条件的合集进行拼接
on后面是连接条件,也就是共有字段
举例:将 student 表与 engScore 表通过相同的 name 拼接起来,简单的来说就是两个 excel 合并
select * from student inner join engScore on student.name = engScore.name;
左连接
select 字段 from 表1 left join 表2 on 连接条件
举例:与内连接形式相同,但左表为主表,指定字段都会显示,右表为从表,无内容会显示 null
select * from student left join engScore on student.name = engScore.name;
右连接
select 字段 from 表1 right join 表2 on 连接条件
举例:与内连接形式相同,但右表为主表,指定字段都会显示,左表为从表,无内容会显示 null
select * from student right join engScore on student.name = engScore.name
聚合函数
可以实现一些具体的功能,比如找最小值,找最大值,求和,计数等
(1) min()
select min(字段) from 表名;
举例:从 student 中查询最小的 age
select min(age) from student;
(2) max()
select max(字段) from 表名
举例:从 student 中查询最大的 age
select max(age) from student;
(3) sum()
select sum(字段) from 表名
举例:从 student 中统计所有 age 的和
select sum(age) from student;
(4) avg()
select avg(字段) from 表名
举例:从 student 中对所有的 age 求平均值
select avg(age) from student;
(5) count()
select count(字段) from 表名
举例:从 student 中查询 name 的记录个数
select count(name) from student;
(6) as
select 函数(字段) as 别名 from 表名
举例:给从 student 中查询的 name 的记录个数 起了一个别名叫 '名字记录个数'
select count(name) as 名字记录个数 from student;
大小写转换
select upper(字段) from 表名
举例:若原 sex 定义为 man, 则运行 sql 语句之后会输出 MAN
select upper(sex) from student where name = '张三';