I have 3 tables:
- film(film_id, filmname) PK (film_id)
- category(category_id, categoryname) PK (category_id)
- film_category(contains both primary keys (film_id) and (category_id))
The problem is that I want to select all filmname
from film tables where category_id = 3.
How to do this mysql select?