All SQL problems
EasySELECT
List every customer
The simplest possible query — return every column of every row from the customers table. Every SQL journey starts here.
- #select
- #from
Schema (SQLite, in-browser)
customers (id, name, city, signup_date) products (id, name, category, price) orders (id, customer_id, order_date, status) order_items (order_id, product_id, quantity)
Sample input
10 customers in the table
Expected shape
10 rows × 4 cols
sql-select-all.sqlSQLite
Result
Press “Run query” to execute against the sample database.
