-- SELECT count(*), min(price), max(price), avg(price), median(price) FROM airbnb_listings
-- SELECT count(distinct price) FROM airbnb_listings
SELECT neighbourhood, room_type, count(*) as cant
FROM airbnb_listings
where price < ${range}*250
group by neighbourhood, room_type
order by 1,2 desc