beeboroach
Technical User
I need to use a subquery to create a list that shows the description and price for all products that were ever ordered. It should not show products that were never ordered.
This is what my relationships look like:
Here's what I started with:
SELECT PRODUCT.Product_Description, PRODUCT.Standard_Price
FROM PRODUCT;
How do I make a subquery to exclude those that don't have an order id or..?
This is what my relationships look like:
Here's what I started with:
SELECT PRODUCT.Product_Description, PRODUCT.Standard_Price
FROM PRODUCT;
How do I make a subquery to exclude those that don't have an order id or..?