知识点

  1. 第一个筛选条件是需要知道电影id
  2. 第二个筛选条件是name = ‘Action’
  3. 第二个筛选条件不能在单一表中筛选因此使用内连接

代码

select f.title, f.description
from film as f
where f.film_id in (
    select fc.film_id
    from film_category as fc
    join category as c
    on fc.category_id = c.category_id
    where name = 'Action')