N
Size: a a a
F
select top 1 with ties d.maker, first_value(p.price) over (partition by d.maker order by p.price asc)
from printer p
join product d on d.model = p.model
where p.color = 'Y' and p.price is not null
order by p.price asc
F
F
F
F
N
select top 1 with ties d.maker, first_value(p.price) over (partition by d.maker order by p.price asc)
from printer p
join product d on d.model = p.model
where p.color = 'Y' and p.price is not null
order by p.price asc