题解 | #SQL29 用 join 方式找出没有分类的电影 id 及其名称#
使用join查询方式找出没有分类的电影id以及名称
http://www.nowcoder.com/practice/a158fa6e79274ac497832697b4b83658
select t.film_id, t.title from (select f.film_id, fy.category_id, f.title from film f left join film_category fy on f.film_id = fy.film_id) as t left join category c on c.category_id = t.category_id where t.category_id is null