select f.title,f.description
from film f join (select c.name,fc.film_id
from category c left join film_category fc
on c.category_id = fc.category_id
where c.name = 'Action') fcc
on f.film_id = fcc.film_id;