From 5a9c6c064b373069986a4e7bfbcd96a4575b16c2 Mon Sep 17 00:00:00 2001 From: Vinoo Ganesh Date: Sun, 30 Jul 2023 23:42:58 -0400 Subject: [PATCH] Add Cohort Count --- chapter5/tests/generic/ensure_cohort_size_max_100.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chapter5/tests/generic/ensure_cohort_size_max_100.sql b/chapter5/tests/generic/ensure_cohort_size_max_100.sql index 3d2e44a..4568681 100644 --- a/chapter5/tests/generic/ensure_cohort_size_max_100.sql +++ b/chapter5/tests/generic/ensure_cohort_size_max_100.sql @@ -6,7 +6,7 @@ with cohort_count_cte as ( group by {{ column_name }} ) -select cohort +select cohort, cohort_count from cohort_count_cte where cohort_count > 100