Created
January 21, 2023 04:46
-
-
Save carlineng/7fe9b23a2137e08bc6f8f8751125df7c to your computer and use it in GitHub Desktop.
This file contains 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 | |
YEAR(d_date) AS d_year | |
, MONTH(d_date) AS d_month | |
, ROUND(SUM(total_sales), 2) AS total_sales | |
FROM sales_by_date | |
GROUP BY ROLLUP (d_year, d_month) | |
ORDER BY d_year NULLS FIRST, d_month NULLS FIRST |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment