SQL query multi table selection

Posted by nemiss on Stack Overflow See other posts from Stack Overflow or by nemiss
Published on 2010-04-06T21:01:44Z Indexed on 2010/04/07 17:23 UTC
Read the original article Hit count: 173

Filed under:

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?

© Stack Overflow or respective owner

Related posts about sql