select title, descriptionfrom filmwhere film_id in( select film_id from film_category where category_id in ( select category_id from category where name = 'Action' )) 该题一开始没注意使用子查询方式,采用了左连接,结果不正确。后来全部使用子查询,通过。