Old housing data
with prep as (SELECT * except (description, image_thumbnail) FROM `properati-data-public.properties_ar.properties_sell_201511` where price is not null and price != 0), average_usd as (select concat(extract(year from created_on),'-',extract(month from created_on)) as yearmonth,round(avg(price),0) as…