Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created December 9, 2020 13:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codecademydev/50a8c7e24ff46d2876eec2350edfb6bc to your computer and use it in GitHub Desktop.
Save codecademydev/50a8c7e24ff46d2876eec2350edfb6bc to your computer and use it in GitHub Desktop.
Codecademy export
with reviews20 as (
select *
from reviews
where strftime(’%Y’,review_date) = 2020
)
select *
from places
join reviews20
on …
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment