Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- set @start := '2019-1-1';
- select
- A.city,A.cid, A.name as zonename, A.Week, A.number_of_cars, A.cumulative_cars, IFNULL(B.ActiveMembers,0) as WAU, IFNULL(C.totalmfts,0) as MFTs, IFNULL(D.nuse,0) as resv,
- IFNULL(round(D.Dur,2),0) as duration, IFNULL(round(D.rental,2),0) as gross_rev, IFNULL(round(D.discount,2),0) as coupon , IFNULL(round((D.rental - D.discount),2),0) as Net_Rev , IFNULL(B.ActiveMembers/A.number_of_cars,0) as Wau_percar,
- IFNULL(C.totalmfts/B.ActiveMembers,0) as MFT_perMAU, IFNULL(round(((D.rental - D.discount)/A.cumulative_cars),2),0) as Netrev_PC_PD , IFNULL(D.nuse/A.number_of_cars,0) as resv_perCar,
- IFNULL(D.nuse/B.ActiveMembers,0) as resv_perWAU
- from
- #### Number of cars
- (select
- weekofyear(czl.log_date + interval '8' hour) as week, count(distinct czl.id) as cumulative_cars,count(distinct czl.car_id) as number_of_cars, czl.car_id as cid,
- z.id as zid, z.name as name, z.city as city
- from car_zone_logs czl
- left join cars ca on ca.id = czl.car_id
- left join car_classes cc on cc.id = ca.car_class_id
- left join zones z on z.id = czl.zone_id
- Where czl.log_date >= @start
- and czl.zone_id not in (2,3,101,383,378,712,818,786)
- group by week,cid) A
- left join
- ############## Number of Active Members
- (select
- weekofyear(r.return_at + interval '8' hour) as week,
- r.car_id as cid,
- count(distinct case when r.state NOT IN ('canceled', 'fail') then r.member_id end) as ActiveMembers,
- count(distinct case when r.state NOT IN ('canceled', 'fail') then r.id end) as resv
- from reservations r
- join members m
- on m.id = r.member_id and m.email not like '%socar.my%' and m.imaginary = 'normal'
- where r.return_at + interval '8' hour >= @start
- group by 1,2
- order by 1 asc) B
- on A.Week = B.Week and A.cid = B.cid
- left join
- ######### Number of MFTs
- (select
- A.week as week,
- IFNULL(B.cid,"") as cid,
- count(A.mid) as totalmfts
- from
- (select
- distinct c.member_id as mid, Month(c.created_at + interval '8' hour) as month, WEEKOFYEAR(c.created_at + interval '8' hour) as Week
- from charges c
- where c.kind = 'subscriptionFee' and c.created_at + interval '8' hour >= @start) A
- left join
- (select
- distinct r.member_id as mid, min(r.id) as rid, r.car_id as cid,
- z.id as zid
- from reservations r
- join members m on r.member_id = m.id
- join zones z on r.start_zone_id = z.id
- where m.imaginary in ('sofam', 'normal') and r.member_id not in ('125', '127') and r.start_at + interval '8' hour >= @start
- group by r.member_id) B
- on A.mid = B.mid
- where B.zid is not null
- group by A.week,cid ) C
- on A.Week = C.Week and A.cid = C.cid
- left join
- ####### for Number of Hours
- (select
- weekofyear(r.return_at) as week, r.start_zone_id as zid, count(r.id) as nuse,r.car_id as cid,
- sum(timestampdiff(minute, r.start_at, r.return_at)/60) as dur,
- sum((timestampdiff(minute, r.start_at, r.end_at)/60)/24)*12 + if(mod((timestampdiff(minute, r.start_at, r.end_at)/60), 24)>=12,12,mod((timestampdiff(minute, r.start_at, r.end_at)/60), 24)) as adj_dur,
- sum(ifnull((select sum(amount) from charges where state='normal' and r.id=reservation_id and kind in ('rent','oneway','d2d','mileage')),0)) as rental,
- sum(ifnull((select sum(amount) from payments where state='normal' and reservation_id=r.id and paid_type ='coupon'),0)) as discount
- #count(distinct m.id) as mau
- from reservations r, members m , zones z
- where r.member_id=m.id
- and r.start_zone_id = z.id
- and r.way in ('round','d2d','oneway')
- and r.state = 'completed'
- and m.imaginary in ('normal', 'sofam')
- and r.return_at+interval 8 hour >= @start
- and r.start_zone_id not in (2,3,101,383,378,697,712,818)
- group by week, cid) D
- on D.week = A.week and D.cid = A.cid
- where A.week > Weekofyear(now()) - 3
- group by A.week, A.cid
Advertisement
Add Comment
Please, Sign In to add comment