mysql 必知必会第五版 (第四课过滤数据练习题)

4.4挑战题

1. 编写 SQL 语句,从 Products 表中检索产品 ID(prod_id)和产品名 称(prod_name),只返回价格为 9.49 美元的产品。

select prod_id,prod_name from Products where prod_price='9.49美元‘;

2. 编写 SQL 语句,从 Products 表中检索产品 ID(prod_id)和产品名 称(prod_name),只返回价格为 9 美元或更高的产品。

select prod_id,prod_name from Products where prod_name>='9美元’;

3. 结合第 3 课和第 4 课编写 SQL 语句,从 OrderItems 表中检索出所有 不同订单号(order_num),其中包含 100 个或更多的产品。

select distinct order_num from Products;

4. 编写 SQL 语句,返回 Products 表中所有价格在 3 美元到 6 美元之间 的产品的名称(prod_name)和价格(prod_price),然后按价格对 结果进行排序。(本题有多种解决方案,我们在下一课再讨论,不过 你可以使用目前已学的知识来解决它。

select   prod_name,prod_price from Products where prod_price between '3美元‘ and ’6美元‘ order by prod_price;

你可能感兴趣的:(MYSQL,mysql,数据库)