#三个电影id 
#目录有11个类型
#只有两个分类了

select a.film_id,a.title
from film a left join film_category  b 
on a.film_id=b.film_id 
where b.film_id is null

;