select t.title,t.description
from film t
where t.film_id in (select t2.film_id
from category t1
right join film_category t2
on t1.category_id=t2.category_id
where t1.name='Action')