Skip to content

Commit

Permalink
Update full_moon_no_sleep.sql
Browse files Browse the repository at this point in the history
  • Loading branch information
zoltanctoth committed Feb 26, 2024
1 parent f3d153a commit 46e20eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dbtlearn/analyses/full_moon_no_sleep.sql
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
WITH mart_fullmoon_reviews AS (
WITH fullmoon_reviews AS (
SELECT * FROM {{ ref('fullmoon_reviews') }}
)
SELECT
is_full_moon,
review_sentiment,
COUNT(*) as reviews
FROM
mart_fullmoon_reviews
fullmoon_reviews
GROUP BY
is_full_moon,
review_sentiment
Expand Down

0 comments on commit 46e20eb

Please sign in to comment.