select MAX(prod_price) as max_price
from Products where prod_price <= 10

知识点:
1、最大值函数 max
2、条件筛选 注意这里是需要 <=10
3、where的执行顺序在select之前,所以别名使用会报错。且该题别名为聚合函数,逻辑上也不用考虑别名