select title,description from film,film_category fc
where film.film_id = fc.film_id
and fc.category_id in(
select category_id from category where name like 'Action'
group by name)