Created
August 11, 2019 13:03
-
-
Save bifacil/36fc065b0cd6d28b53db3bc3d2c3156d 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
--Ejemplo 2 | |
SELECT | |
DimProduct.EnglishProductName AS EnglishProductName, | |
sum(sales.OrderQuantity) AS Unidades | |
FROM DATABASE 'http://bit.ly/2oP72d6' | |
WHERE | |
DimGeography.SpanishCountryRegionName='Alemania' | |
AND DimProductCategory.SpanishProductCategoryName='Bicicleta' | |
AND DimDate.CalendarYear=2008 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment