《MySQL必知必会》第6-7章 过滤数据与数据过滤
1. WHERE子句
根据WHERE子句中指定的搜索条件进行过滤,WHERE子句在表名之后给出.
1 | mysql> select prod_name,prod_price from products where prod_price = 2.50; |
在同时使用ORDERBY和WHERE子句时,应该让ORDER BY位于WHERE之后,否则将会产生错误
根据WHERE子句中指定的搜索条件进行过滤,WHERE子句在表名之后给出.
1 | mysql> select prod_name,prod_price from products where prod_price = 2.50; |
在同时使用ORDERBY和WHERE子句时,应该让ORDER BY位于WHERE之后,否则将会产生错误