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