Created
April 13, 2012 18:29
-
-
Save Veejay/2378976 to your computer and use it in GitHub Desktop.
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 | |
date(created_at) as ordered_date, | |
sum(price) as total_price | |
FROM | |
orders | |
GROUP BY | |
date(created_at) | |
HAVING | |
sum(price) > 100 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Aye, even better cause less verbose.