chargebacks_per_day.sql

11 lines | 220 B Blame History Raw Download
create or replace view v_chargebacks_per_day as
select
  currency as pivot
, date_format(created_date, '%Y-%m-%d') as day
, sum(amount) as count
from bipc
where report_group = 'default'
group by 1, 2
order by 1, 2 asc
;