select title, description
from film
where film_id in (
    select a.film_id
    from film_category as a
    left join category as b
    on a.category_id = b.category_id
    where b.name = 'Action'
);