Instruction
Great! If you want to get a couple columns from a table, simply list their names after the SELECT clause. So to get the names and ages of all users, type:
SELECT Name, Age FROM User;
Note that you separate the names of the columns with a comma (,).
Exercise
Select the model and price of each car.
Stuck? Here's a hint!
Type:
SELECT Model, Price FROM Car;



