Deals Of The Week - hours only!Up to 80% off on all courses and bundles.-Close
See the whole table
Select some columns
3. Select one column
Filtering rows
Logic
Text patterns
To be or NULL to be
A little bit of mathematics
Let's practice

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 names of all users, type:

SELECT name
FROM user;

Exercise

Select brand names from the car table.

Stuck? Here's a hint!

Type:

SELECT brand
FROM car;