Instruction
What if you don't want to select all columns from a table? No problem. Just type the column name instead of the asterisk. If you want to get the names of all users, type:
SELECT Name FROM User;
Exercise
Select all brand names from the Car table.
Stuck? Here's a hint!
Type:
SELECT Brand FROM Car;



