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