select
a.title,
a.description
from
film a
join film_category c using (film_id)
join category b using (category_id)
where
b.name = 'Action'

select
a.title,
a.description
from
film a
join film_category c using (film_id)
join category b using (category_id)
where
b.name = 'Action'