Here is the link if anyone can explain the answer to me that would be awesome. I believe, using the hint, I’m supposed to put “NULL”, but am unsure. any help would be appreciated.
Hey, I am also stuck on this one. Came up with the solution I posted below but not sure if it is the correct way, Would appreciate it a lot if someone could confirm
WITH reviews_2020 AS (
SELECT *
FROM reviews
WHERE strftime(“%Y”, review_date) = ‘2000’
)
SELECT *
FROM places
LEFT JOIN reviews_2020 ON places.id = reviews_2020.place_id;