#TIL that in most SQL engines the condition `category != 'movies'` will not return rows where the category is NULL, you should do `category != 'movies' OR category IS NULL` instead.
This is an instance-of-one managed by Noel De Martin.