Instruction
Okay, we've prepared two additional tables for you: Item and Buyer.
Let's start with the Item table.
Exercise
Select all data from the Item table.
As you can see, it has the following columns:
Id– the ID of a given item,Name– the name of a given item,Price– the price of a given item, andType– the type of a given item.
Stuck? Here's a hint!
Type:
SELECT * FROM Item



