SQL query multi table selection
- by nemiss
I have 3 tables,
- Section table that defines some general item sections.
- Category table - has a "section" column (foreign key).
- Product table - has a "category" column (foreign key).
I want to get all products that belong to X section.
How can I do it?
select from select?