Created
July 17, 2018 08:13
-
-
Save jamiekt/be0c85c009c4b0733f8991d837649b34 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 count(distinct basket) as number_of_baskets_purchased | |
| , count(distinct product) as number_of_products_purchased | |
| , count(distinct customer) as number_of_customers_purchasing | |
| , count(distinct store) as number_of_stores_purchased_in | |
| from data |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment