题解 | #使用子查询的方式找出属于Action分类的所有电影对应的title,description#
使用子查询的方式找出属于Action分类的所有电影对应的title,description
http://www.nowcoder.com/practice/2f2e556d335d469f96b91b212c4c203e
这叫套娃,一层一层套娃
select
f.title,f.description
from
film f
where
f.film_id
in (
select
f.film_id
from
film_category f
where category_id
in(
select
c.category_id
FROM
category c
where
c.name='action')
)