题解 | #使用子查询的方式找出属于Action分类
使用子查询的方式找出属于Action分类的所有电影对应的title,description
https://www.nowcoder.com/practice/2f2e556d335d469f96b91b212c4c203e
select f.title,f.descriptionfrom film f left join film_category fc on f.film_id = fc.film_idwhere fc.category_id = ( select distinct fc2.category_id from film_category fc2 left join category c on fc2.category_id = c.category_id where c.name = 'Action' )