Last active
August 29, 2015 14:13
-
-
Save gammy/b45c04e8edd7116d1cb8 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 | |
| s.article_id, | |
| a.category, | |
| DATE(s.date_created) AS date_c, | |
| COUNT(s.article_id) AS count | |
| FROM | |
| warehouse_stockunit AS s, | |
| warehouse_article AS a | |
| WHERE | |
| s.article_id = a.id | |
| GROUP BY | |
| s.article_id, | |
| date_c | |
| ORDER BY | |
| date_c DESC |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment