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

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