select vend_id,min(prod_price) as cheapest_item
from Products 
group by vend_id
order by cheapest_item

知识点:
1、与上题没有区别
2、count(),换成min()