Last active
January 2, 2016 20:59
-
-
Save tegansnyder/8360414 to your computer and use it in GitHub Desktop.
Customers who purchased less than $100 in product
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 COUNT(entity_id) as num_custs FROM ( | |
| SELECT entity_id | |
| FROM `sales_flat_order` | |
| GROUP BY customer_email | |
| HAVING SUM(base_subtotal) < 100 | |
| ) sub_query |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment