Mysql基础第九天,过滤数据
Posted 2019ab
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mysql基础第九天,过滤数据相关的知识,希望对你有一定的参考价值。
1.使用WHERE子句
2.WHERE子句的操作符
select prod_name,prod_price from products where prod_price = 2.5; // 检查单个值
select cust_name,cust_city from customer where cust_city = 'Chicago'; // 检查单个值
select prod_name,prod_price from products where prod_price != 2.5; // 不匹配检查
select prod_name,prod_price from products where prod_price >= 1; // 范围查询
select prod_name,prod_price from products where prod_price is null; // 空值检查
select prod_name,prod_price from products where prod_price is not null; // 空值检查
3.小结
以上是关于Mysql基础第九天,过滤数据的主要内容,如果未能解决你的问题,请参考以下文章