MySQL_六至八章学习

第六章.过滤数据

1.使用WHERE子句

WHERE子句需要在FROM子句之后给出

MySQL_六至八章学习

 

 

 注意,应该让order b子句位于where子句之后,否则会产生错误。

2.where子句操作符

 

mysql> select prod_name,prod_price from products where prod_name = ‘fuses‘;

mysql> select prod_id,prod_price from products where prod_id = 1003;

mysql> select prod_name,prod_price from products where prod_price between 5 and 10;

mysql> select cust_id from customers where cust_email is null;

 

 

 

 MySQL_六至八章学习

 

MySQL_六至八章学习

上一篇:postgreSQL使用sql归一化数据表的某列,以及出现“字段 ‘xxx’ 必须出现在 GROUP BY 子句中或者在聚合函数中”错误的可能原因之一


下一篇:MySQL_fetch_array 和 MySQL_fetch_object 的区别是什么?