#select prod_price as max_price from Products where prod_price <=10 order by 
prod_price desc limit 1
# select max(prod_price) as max_price from Products where prod_price <=10


第一种:where条件过滤,先找出10美元以下的商品,然后对其进行排序,然后使用limit进行获取,获取数量为1
第二种,当价格低于10美元时 找出最大值