【发布时间】:2017-01-25 21:59:46
【问题描述】:
我需要选择价格高于平均水平的产品(它们的名称)和价格记录,但低于 33
我的要求:
select ProductName, Price
from Products
where Price>(select avg(Price) from Products)
and
Where Price < 33;
它不工作。为什么?
提前谢谢你。
【问题讨论】:
-
“不工作”没有多大帮助。你有任何错误吗?