Learn SQL
0/3
Lesson 1 of 3

SQL Basics

Your First SELECT

SQL reads data with SELECT. SELECT * FROM users; returns every column of every row. The table is created for you in the starter code — add your query at the bottom.

Your Task

Select all rows and columns from the users table.

SELECT * FROM users;
query.sql
Output
Press "Run Code" to execute your program.
🚀

Ready to run your code?

Create a free account to run code, get instant feedback, and save your progress. No credit card, free forever.

Create Free Account

Already have one? Log in