-- Run this in pgAdmin Query Tool while connected to the default "postgres" database. -- If the database already exists, skip the CREATE DATABASE line.
COUNT(*) FILTER (WHERE director IS NULL) AS director_nulls, COUNT(*) FILTER (WHERE country IS NULL) AS country_nulls, COUNT(*) FILTER (WHERE casts IS NULL) AS cast_nulls, COUNT(*) FILTER (WHERE ...