sql第30题 无子查询

select
f.title
,f.description
from film f
left join film_category fc
on f.film_id = fc.film_id
left join category c
on c.category_id = fc.category_id
where c.name = "Action"