码迷,mamicode.com
首页 > 数据库 > 详细

MySQL学习4 数据过滤

时间:2017-02-22 18:36:32      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:products   where   

and 和 or 操作符

select prod_name ,prod_price

form products

where vend_id =1002 or vend_id=1003 and prod_price >=10; #这样会先处理 and部分的内容,再处理or的内容

例2

select prod_name ,prod_price

form products

where( vend_id =1002 or vend_id=1003) and prod_price >=10;

in 操作符

select prod_name , prod_price

form products

where vend_id in (1002,1003) #会与括号中的值逐个匹配,实际效果与 where vend_id = 1002 or vend_id=1003一样

order by prod_name;

not操作符

not操作符就是否定后面的任何条件

select prod_name , prod_price

form products

where vend_id not in (1002,1003)

order by prod_name;

MySQL学习4 数据过滤

标签:products   where   

原文地址:http://huzhongliang.blog.51cto.com/1817180/1900287

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!