题解 | #使用子查询的方式找出属于Action分类的所有电影对应的title,description#
使用子查询的方式找出属于Action分类的所有电影对应的title,description
http://www.nowcoder.com/practice/2f2e556d335d469f96b91b212c4c203e
思路:嵌套子查询,通过查询出 name = 'Action'
的 category_id,然后通过 category_id 查询出 film_id,最后查出题目所需字段信息。
注意:因为 name = 'Action' 的结果可能有多个,所以在所有的 where 条件中都需要使用 in
关键字来查询
select title, description
from film
where film_id in (
select film_id
from film_category
where category_id in (
select category_id
from category
where name = 'Action'))
SQL练习 文章被收录于专栏
已完成牛客的SQL练习。接下来是算法的练习