refunds_per_day.sql

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