select
    prod_name,
    prod_price
from 
    Products
where
    prod_price>=3 and prod_price<=6
order by
    prod_price;