mysql過濾數據

一、使用where子句:class

select 表的字段名 from 對應的表名 where 表的字段名;select

例子:select prod_name,prod_price from products where prod_price = 2.50;di

where子句的位置:在同時使用order by 和 where 子句時,應該讓order by 位於 where 以後,不然將會產生錯誤。字符

二、where子句操做符:錯誤

1)等於:

數值型:select prod_name,prod_price from products where prod_price = 2.50;

字符型:select prod_name,prod_price from products where prod_name = 'fuses';

2)小於:

select pro_name,prod_price from products where prod_price < 10;

3)大於:

select pro_name,prod_price from products where prod_price > 10;

4)小於或等於:

select pro_name,prod_price from products where prod_price <= 10;

5)大於或等於:

select pro_name,prod_price from products where prod_price >= 10;

6)不等於:

select vend_id,prod_name from products where vend_id <> 1003;

select vend_id,prod_name from products where vend_id != 1003;

三、範圍值檢查:

select 表的字段名 from 對應的表名 where 表的字段名between 數值 and 數值;

例子:select prod_name,pro_price from products where prod_price between 5 and 10;

在使用between時,必須指定兩個值--所需範圍的低端值和高端值。這兩個值必須用and關鍵字分隔。between匹配範圍中全部的值,包括指定的開始值和結束值。

四、空值檢查:

select 表的字段名 from 對應的表名 where 表的字段名 is null;

例子:select prod_name from products where prod_name is null;

相關文章
相關標籤/搜索