题目描述:使用子查询的方式找出属于Action分类的所有电影对应的title,description
代码:

select f.title, f.description
from film f, film_category fc
where f.film_id=fc.film_id and fc.category_id in 
(
    select category_id
    from category
    where name="Action"
)