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,ProductId– the ID of a given ordered product,OrderDate– the date of a given order, andAmount– the amount of a given order.
Stuck? Here's a hint!
Type:
SELECT * FROM Orders



