Lesson 2 of 326%
(Progress persistence is disabled until Phase 9)
SQL
Beginner
The SELECT Statement
How to retrieve data from a database.
The SELECT Statement
How to retrieve data from a database.
Example
-- Select specific columns from a table
SELECT name, email FROM users;
Test it Yourself