欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

《mysql必知必会》学习_第六章_20180730_欢

程序员文章站 2022-07-01 13:12:20
第六章《过滤数据》 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'; # ......

第六章《过滤数据》

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';

#两个语句得到的结果一样,因为指定的是数值。

《mysql必知必会》学习_第六章_20180730_欢

P36

select prod_name,prod_price from products where prod_name='fuses'; #当指定的是文字时候,则要用引号(‘ ’)。

《mysql必知必会》学习_第六章_20180730_欢

select prod_name,prod_price from products where prod_price <10; #检索prod_price小于或等于10(<=不是=<)的,读取prod_name,prod_price列。

《mysql必知必会》学习_第六章_20180730_欢

 select prod_name,prod_price from products where prod_price <10; #检索prod_price小于10的,读取prod_name,prod_price列。

《mysql必知必会》学习_第六章_20180730_欢

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的表达的意思是一样的# 

《mysql必知必会》学习_第六章_20180730_欢

P38

 select prod_name,prod_price from products where prod_price between 5 and 10; #检索prod_price在范围5到10之内的。注意:数值加上引号与否并不会影响结果#

《mysql必知必会》学习_第六章_20180730_欢

select prod_name from products where prod_price is null ; #表示检索prod_price是空值的#返回没有结果,因为prod_price没有空值#

《mysql必知必会》学习_第六章_20180730_欢

P39

select cust_id from customers where cust_email is null ;#检索cust_email是空值#

《mysql必知必会》学习_第六章_20180730_欢