题解 | #使用join查询方式找出没有分类的电影#
使用join查询方式找出没有分类的电影id以及名称
https://www.nowcoder.com/practice/a158fa6e79274ac497832697b4b83658
select f.film_id, f.title from film f left join film_category fc on fc.film_id = f.film_id left join category c on c.category_id = fc.category_id where c.name is null
是 is null 而不是=null