Your First Look at a Query
Write your very first SELECT statement, understand FROM and WHERE, and see real query results — no setup needed, just the concept.
Let's read a query
Time to look at a full query together. Don't worry, we'll go one little piece at a time. 🔍
Here it is
This query asks for the names of users from the users table. Read it like a sentence.
SELECT name FROM users;All lessons in this course
- What is a Database?
- What is SQL?
- Your First Look at a Query