Instruction
Okay, here comes the last table: orders.
Exercise
Select all data from the orders table.
It contains only three columns:
id– the ID of a given order,product_id– the ID of a given ordered product,order_date– the date of a given order, andamount– the amount of a given order.
Stuck? Here's a hint!
Type:
SELECT * FROM orders



