第六章《过滤数据》
P35
1. select prod_name,prod_price from products where prod_price=2.5;
2.select prod_name,prod_price from products where prod_price='2.5';
#两个语句得到的结果一样,因为指定的是数值。
P36
select prod_name,prod_price from products where prod_name='fuses'; #当指定的是文字时候,则要用引号(‘ ’)。
select prod_name,prod_price from products where prod_price <10; #检索prod_price小于或等于10(<=不是=
select prod_name,prod_price from products where prod_price <10; #检索prod_price小于10的,读取prod_name,prod_price列。
P37 不匹配检查(不等于某个值)
1. select vend_id,prod_name from products where vend_id <>1003; #vend_id不等于1003#
2.1. select vend_id,prod_name from products where vend_id !=1003; #vend_id不等于1003# 1和2的表达的意思是一样的#
P38
select prod_name,prod_price from products where prod_price between 5 and 10; #检索prod_price在范围5到10之内的。注意:数值加上引号与否并不会影响结果#
select prod_name from products where prod_price is null ; #表示检索prod_price是空值的#返回没有结果,因为prod_price没有空值#
P39
select cust_id from customers where cust_email is null ;#检索cust_email是空值#