Deals Of The Week - hours only!Up to 80% off on all courses and bundles.-Close
Returning all data from a table
Select some columns
3. Select one column
Filtering rows
Logic
Text patterns
To be or NULL to be
A 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 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;