ahmedrahil786

NRPCPD and RESPCPD by City and Car maker - Rahil

Jun 3rd, 2020
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.91 KB | None | 0 0
  1. set @startdate1 = '2020-01-01';
  2. set @startdate2 = '2020-01-31';
  3. use socar_malaysia;
  4. Select I.month as month, I.car_name as car_name, I.maker as maker, Round(I.net_rev,2) as Net_rev, ROUND(I.Total_reservations/Q.cars,2) as RESPCPD, ROUND(I.net_rev/Q.cars,2) as RevPCPD, Round(I.Dur/Q.cars,2) as DURPCPD,
  5. Round(I.net_rev/I.Total_reservations,2) NR_per_Rental , Round(I.Dur/I.Total_reservations,2) Dur_per_Rental
  6. from
  7. (select Month(A.return_date) as month, A.car_name as car_name, A.maker as maker, count(A.rid2) as Total_reservations, count(distinct A.mid) as Total_Unique_Members, sum(A.distance) as distance, sum(A.dur) as dur, sum(A.ad_sdur) as ad_sdur,
  8. IFNULL(Sum(E.charges),0) as gross_rev,
  9. IFNULL(sum(F.coupon_Spent),0) as Coupon_Spent,
  10. round((IFNULL(sum(E.charges),0) - IFNULL(sum(F.coupon_Spent),0)),2) as net_rev from
  11. (select
  12. distinct r.id as rid2, r.member_id as mid, r.way as way, cc.car_name as car_name, cc.maker as maker,
  13. IFNULL(sum(ra.mileage),0) as distance,
  14. round(sum(timestampdiff(minute, r.start_at, r.end_at)/60),2) as dur,
  15. round(sum(floor(timestampdiff(minute, r.start_at, r.end_at)/60/24)*12+if(mod(timestampdiff(hour, r.start_at, r.end_at),24)>=12,12,mod(timestampdiff(minute, r.start_at, r.end_at)/60,24))),2) as ad_sdur,
  16. Date(r.return_at + interval '8' hour) as return_Date,
  17. month(r.return_at + interval '8' hour) as month
  18. from reservations r left join members m on r.member_id = m.id
  19. left join reservation_appendixes ra on ra.reservation_id = r.id
  20. left join cars cr on cr.id = r.car_id
  21. left join car_classes cc on cc.id = cr.car_class_id
  22. left join zones z on z.id = r.start_zone_id
  23. where r.state in ('completed')
  24. and r.return_at + interval 8 hour >= @startdate1
  25. and r.return_at + interval 8 hour <= @startdate2
  26. and m.imaginary in ('sofam', 'normal')
  27. and r.member_id not in ('125', '127')
  28. and (YEAR(r.start_at) - YEAR(m.birthday)) < 100
  29. and z.city in ('PG')
  30. group by rid2) A
  31. left join
  32. (select c.reservation_id as rid, sum(c.amount) as charges from charges c
  33. where c.state='normal' and c.kind in ('rent','oneway','d2d','mileage')
  34. group by rid) E on A.rid2 = E.rid
  35. left join
  36. (select p.reservation_id as rid, month(p.created_at + interval '8' hour) as month,Year(p.created_at + interval '8' hour) as year, IFNULL(p.amount,0) as coupon_Spent from payments p
  37. where p.state = 'normal' and p.paid_type = 'coupon'
  38. group by p.reservation_id) F on A.rid2 = F.rid
  39. group by 1,2 ) I
  40. left join
  41. (select month(czl.log_date + interval 8 hour ) as month, cc.car_name as car_name, count(czl.id) as cars from car_zone_logs czl left join cars cr on cr.id = czl.car_id left join zones z on z.id = czl.zone_id
  42. left join car_classes cc on cc.id = cr.car_class_id where czl.zone_state='normal'
  43. and czl.log_date + interval 8 hour >= @startdate1
  44. and czl.log_date + interval 8 hour <= @startdate2
  45. and z.city in ('PG')
  46. group by 1,2
  47. order by 1,2 desc) Q
  48. on Q.month = I.month and Q.car_name = I.car_name
  49. where I.month < '2'
  50. group by 1,2
Advertisement
Add Comment
Please, Sign In to add comment