All SQL problems
EasyWHERE
Filter — Mumbai customers only
Return the name of every customer based in Mumbai.
- #where
- #filter
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, 3 in Mumbai
Expected shape
3 rows
sql-where-filter.sqlSQLite
Result
Press “Run query” to execute against the sample database.
