判断是否为NULL用is

select f.film_id,f.title from
film  f left join film_category fi on
f.film_id=fi.film_id
where fi.category_id is NULL;