Created
August 11, 2019 13:05
-
-
Save bifacil/fc5f3bc3c791a1f4048d3814faa3d80f 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 | |
DimGeography.SpanishCountryRegionName AS SpanishCountryRegionName, | |
sum(sales.OrderQuantity) AS Unidades | |
FROM FactResellerSales sales | |
INNER JOIN DimDate ON (sales.OrderDateKey=DimDate.DateKey) | |
INNER JOIN DimReseller ON (sales.ResellerKey=DimReseller.ResellerKey) | |
INNER JOIN DimGeography ON (DimReseller.GeographyKey=DimGeography.GeographyKey) | |
WHERE DimDate.CalendarYear=2008 | |
GROUP BY DimGeography.SpanishCountryRegionName |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment