select title,DESCRIPTION
from film
where 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' )