–第五章 高级过滤数据
/*
where 操作符
and 与 //不加括号的情况下and运算优先or执行
or 或 //不加括号的情况下or运算法比and要后执行
in 在范围内 //与多个=运算符相或效果一样,如order_item in(1,3)与order_item=1 or order_item=3等效
not 表示否定的意思 //如not order_item=1与order_item<>1等效
*/
select order_item,prod_id,quantity
from OrderItems
where order_item=1 and prod_id!=‘BR01’ and quantity>5
order by prod_id asc; --可以在后面加上排序,这里asc是升序,desc为降序,–过滤数据输出,三条件相与
/*
order_item prod_id quantity
1 BNBG01 250
1 BR03 50
*/
select order_item,prod_id,quantity
from OrderItems
where order_item=1 or prod_id=‘BR03’ and quantity>5
order by prod_id asc; --可以在后面加上排序,这里asc是升序,desc为降序–过滤数据输出,上面的过滤先