Instruction
Good job! Now, we'll introduce the last two tables to show another use case of non-equi JOINs.
Exercise
Select all data from the product_price table.
It contains information about the special price of a given product between two dates. It contains the following columns:
product_id– the ID of a given product,price– the price of a given product in a given period of time,start_date– the date from which a given price went into affect, andend_date– the date when a given price ceases to apply.
Stuck? Here's a hint!
Type:
SELECT * FROM product_price



