本题是在限定条件下对数据进行筛选,会使用到where + max函数的组合:
select max(prod_price) max_price from Products  #  筛选其中的最大值
where prod_price <= 10   #  将价格限定在10元以下