思路:嵌套子查询,通过查询出 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'))