Flash cards
Review the key moves
What is the main idea behind SQL SELECT Keyword?
Lesson checks
Practice each idea before moving on
Short Mimo-style checks built from this lesson's code, terms, and sequence.
Which statement best captures the main point of this lesson?
Complete the missing token from the example code.
___ CustomerName, City FROM Customers;Put the learning moves in the order that makes the concept easiest to apply.
Select
The SELECT command is used to select data from a database. The data returned is stored in a result table, called the result set.
The following SQL statement selects the "CustomerName" and "City" columns from the "Customers" table:
Example
SELECT CustomerName, City FROM Customers;The following SQL statement selects all the columns from the "Customers" table:
Example
SELECT * FROM Customers;