Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Non-extensive measures e.g. COUNT DISTINCT #31

Open
danfrankj opened this issue Jan 15, 2022 · 0 comments
Open

Non-extensive measures e.g. COUNT DISTINCT #31

danfrankj opened this issue Jan 15, 2022 · 0 comments

Comments

@danfrankj
Copy link
Collaborator

Given an input "transaction fact" containing one row per transaction, compute "transacting users by day".

In SQL this might accomplished via

SELECT 
  COUNT(DISTINCT user_id)
  , ts::DAY
FROM transaction_fct
GROUP BY 
  ts::DAY  

In particular to compute this we need not join any table containing all users as this may be quite expensive.

Potentially related to #30

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant