I have three tables:
Product
- Product_ID
- Name
- Description
- Price
Supplier
- Supplier_ID
- Name
- Location
ProductSupplier
- Product_ID
- Supplier_ID
ProductSupplier
is the junction table instead of having the many to many relationship.
I need to create a SELECT
statement that will return two columns: the name and price of the product (not the product ID), but only if the Supplier
is located in Australia. The supplier's location can't show up in the result.
I would know how to do this without the junction table, but this has stumped me.