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