Forked from tegansnyder/Magento-order-sum-breakout-report.sql
Created
March 13, 2018 09:32
-
-
Save manojiksula/4307cae4afd16ba71f3a93ac2932b54b to your computer and use it in GitHub Desktop.
Magento - Sum of All Orders by Month and Year Breakdown includes Discount Sums
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT sub_query.month_ordered, | |
| sub_query.year_ordered, | |
| SUM(sub_query.base_subtotal) AS sum_base_subtotal, | |
| SUM(sub_query.discount_amount) AS sum_discount_amt, | |
| SUM(sub_query.order_qty) AS sum_total_item_count, | |
| COUNT(sub_query.entity_id) AS total_orders | |
| FROM | |
| (SELECT so.entity_id, | |
| MONTH(so.created_at) AS month_ordered, | |
| YEAR(so.created_at) AS year_ordered, | |
| so.base_subtotal, | |
| so.discount_amount, | |
| so.total_item_count AS order_qty, | |
| so.increment_id | |
| FROM `sales_flat_order` AS so | |
| INNER JOIN `sales_flat_order_item` AS si ON si.order_id=so.entity_id | |
| GROUP BY entity_id) AS sub_query | |
| GROUP BY sub_query.month_ordered | |
| ORDER BY year_ordered DESC, | |
| month_ordered DESC |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment