Mysql基础第十天,数据过滤

Posted 2019ab

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mysql基础第十天,数据过滤相关的知识,希望对你有一定的参考价值。

1.组合WHERE子句

	select prod_name,vend_id,prod_price from products where vend_id=1003 and prod_price=2.5;  // 使用and
	select prod_name,vend_id,prod_price from products where vend_id=1010 or prod_price>=10;  // 使用or
	select prod_name,vend_id,prod_price from products where vend_id=1002 and vend_id=1003 or prod_price>=10; // 使用and和or

2.in操作符

在这里插入图片描述

select vend_name,vend_city from vendors where vend_city in ('New York','Lundon','paris');  // in 查询

3. NOT 操作符

在这里插入图片描述

select vend_name,vend_city from vendors where vend_city not in ('New York','Lundon','paris');  // not 查询

4.小结

在这里插入图片描述

感谢观看

以上是关于Mysql基础第十天,数据过滤的主要内容,如果未能解决你的问题,请参考以下文章

Mysql基础第三十天,全球化和本地化

安卓第十天笔记-fragment

大数据Java基础第十天作业

国庆第十天,Django标签和过滤器

大数据JAVA基础第十天

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