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基础第九天,过滤数据的主要内容,如果未能解决你的问题,请参考以下文章

Mysql基础第十九天,使用不同类型的链接

大数据Java基础第九天作业

Python 基础第九天

Java基础第九天总结

大数据Java基础第十九天作业

大数据JAVA基础第九天