Basic SELECT with filter

SQL Easy 3 views
Back to Questions
Next Sort results Easy N

Problem Description

You have Customers(customer_id, name, city). Write a query to show only customer_id and name for customers living in 'Mumbai'. Keep it simple: one WHERE condition.

Input Format

SQL query

Output Format

Result set

Sample Test Case

Input:
Customers(customer_id, name, city)
Output:
Filtered rows

Constraints

Think: WHERE comes after FROM

Solutions (0)

No solutions submitted yet. Be the first!

Discussion (0)

No comments yet. Start the discussion!

Next