MySQL数据库之过滤数据
1.使用where子句寻找对应数据
数据库:own ->>表:single_pro
语法:select ... from ... where 过滤条件。
select * from single_pro where counted = 65;
操作符:
操作符 | 说明 |
= | 等于 |
<> | 不等于 |
!= | 不等于 |
< | 小于 |
<= | 小于等于 |
> | 大于 |
>= | 大于等于 |
between | 在指定的两个值之间 |
2.示例:between
select * from single_pro where counted between 50 and 100 order by counted desc;
3.空值检查
关键点:使用 is null 来判断。
检查counted列是否有空值。【一定注意空值不是0】
select * from single_pro where counted is null;