DQL学习(Data Query Language数据查询语言)
DQL-语法:
select
字段列表
from
表名列表
where
条件列表
group by
分组字段列表
having
分组后条件别表
order by
排序字段列表
limit
分页参数
1)基本查询
查询多个字段:
转义:
select * from 表明 where name like '/_张三' escape '/';
/之后的_不作为通配符
2)条件查询
语法:
条件:
比较运算符 | 功能 |
---|---|
> | 大于 |
>= | 大于等于 |
< | 小于 |
<= | 小于等于 |
= | 等于 |
<>或 != | 不等于 |
between…and… | 在某个范围内(含最小,最大值) |
in(…) | 在in之后的列表中的值,多选一 |
like 占位符 | 模糊匹配(_匹配单个字符,%匹配任意个字符) |
is null | 是null |
逻辑运算符 | 功能 |
---|---|
and 或 && | 并且(多个条件同时成立) |
or 或 ‘//’ | 或者(多个条件任意一个成立) |
not 或 ! | 非,不是 |
例子:
1、年龄等于30
select * from employee where age = 30;
2、年龄小于30
select * from employee where age < 30;
3、小于等于
select * from employee where age <= 30;
4、没有身份证
select * from employee where idcard;
select * from employee where idcard is not null;
5、不等于
select * from employee where age != 30;
6、年龄在20到30之间
select * from employee where age between 20 and 30;
select * from employee where age >= 20 and age <= 30;
7、下面语句不报错,但查不到任何信息
select * from employee where age between 30 and 20;
8、性别为女且年龄小于30
select * from employee where age < 30 and gender = '女';
9、年龄等于25或30或35
select * from employee where age = 25 or age = 30 or age = 35;
select * from employee where age in (25, 30, 35);
10、姓名为两个字
select * from employee where name like '__';
11、身份证最后为X
select * from employee where idcard like '%X';
函数 | 功能 |
---|---|
count | 统计数量 |
max | 最大值 |
min | 最小值 |
avg | 平均值 |
sum | 求和 |
语法:
例子:
原文地址:https://blog.csdn.net/Hunter2916/article/details/134700590
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_37150.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!