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