cancellations_per_day.sql

12 lines | 284 B Blame History Raw Download
create or replace view v_cancellations_per_day as
select
  date_format(next_start_date, '%Y-%m-%d') as day
, count(*) as count
from bst
where next_start_date > date_sub(curdate(), interval 90 day)
and next_start_date <= curdate()
and event = 'CANCEL_BASE'
group by 1
order by 1 asc
;