DQL
数据的查询、在数据库中非常重要
- 简单查询
- 连接查询
- 子查询
- 集合查询
简单查询
select 查询
select expr ;
-- 简单计算
select 1 + 2 ;
-- 查询当前系统时间
select now()
-- 查询当前用户
select user()
-- 查询数据库的版本
select version()
from 查询
select 查询的字段列表 from 表, 表1, ... ;
ps: 查询的字段列表 多个字段,用 逗号分隔,如果表中所有字段,可以使用 * 来标识,但不推荐使用
where 查询
对数据库中的数据进行筛选
select 查询的字段列表 from 表 where 条件 ;
where 中常见的查询条件
- 关系查询 > , >= , < , <= , = , != , <> (不等于)
-- 查询 姓名是 张三的学生信息
select * from t_student where name = '张三' ;
-- 查询 出生日期 大于等于 1995-03-01 的 所有学生姓名
select name from t_student where birth >= '1995-03-01' ;
-- 查询 性别不是女生的 所有学生信息
select * from t_student where sex != '女' ;
select * from t_student where sex <> '女' ;
- 逻辑查询 and (与运算), or (或运算)
-- 查询 姓名为张三且性别为男的学生信息
select * from t_student where name = '张三' and sex = '男' ;
-- 查询 姓名张三 或者 出生日期是 1990-05-01 的学生信息
select * from t_student where name = '张三' or birth = '1990-05-01'
- 区间查询 between … and …
-- 查询 出生日期在 1995-01-01 ---- 2000-01-01 之间的所有学生信息
select * from t_student where birth between '1995-01-01' and '2000-01-01' ;
- 枚举查询 in
-- 查询 张三、李四、王五、赵六 的学生信息
select * from t_student where name in ('张三', '李四', '王五', '赵六') ;
- 模糊查询 like
符号 | 含义 |
---|---|
% | 匹配 0-N个字符 |
_ | 只能匹配一个字符 |
-- 查询 姓张 的所有学生信息
select * from t_student where name like '张%' ;
- 查询 姓名中 包含 四 的学生信息
select * from t_student where name like '%四%' ;
- 查询 姓名 以 四 结尾的学生信息
select * from t_student where name like '%四' ;
-- 查询 姓张 且名字长度为2 的学生信息
select * from t_student where name like '张_' ;
- 空值查询 is null / is not null
-- 查询身份证号 为 空 的学生信息
select * from t_student where cardNo is null;
-- 查询身份证号 不为空的学生信息
select * from t_student where cardNo is not null ;
版权声明:本文为qq_40679091原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。