Count Orders Per Customer Including Zero
SQL coding challenge · Difficulty: easy · Topic: Joins · +50 XP
Problem
Customer success wants an order activity report for every customer — including those who haven't ordered yet. Zero should appear, not be excluded.
Tables
Table: Customer
| customer_id | customer_name | city | | --- | --- | --- | | 1 | Krishna | Hyderabad | | 2 | Sudheer | Bangalore | | 3 | Atul | Pune | | 4 | Rahul | Hyderabad |
Table: Orders
| order_id | customer_id | order_date | amount | aspect | | --- | --- | --- | --- | --- | | 101 | 1 | 2024-05-01 | 2500.00 | Electronics | | 102 | 1 | 2024-05-03 | 1500.00 | Books | | 103 | 2 | 2024-05-05 | 3000.00 | Clothing | | 104 | 4 | 2024-05-07 | 1200.00 | Books | | 105 | 4 | 2024-05-10 | 2200.00 | Electronics |
Expected Output
| customer_id | customer_name | city | order_count | | --- | --- | --- | --- | | 1 | Krishna | Hyderabad | 2 | | 2 | Sudheer | Bangalore | 1 | | 3 | Atul | Pune | 0 | | 4 | Rahul | Hyderabad | 2 |
- Return:
customer_id,customer_name,city,order_count - Customers with no orders must show 0 (not NULL, not excluded)
- Sort by
customer_idascending
What this SQL challenge teaches you
“Count Orders Per Customer Including Zero” is a easy-level SQL challenge focused on Joins. Working through it gives you hands-on practice with LEFT JOIN, COUNT, GROUP BY — the kind of transformation you are asked to write in real data engineering work and in technical interviews. You can solve it directly in the browser: the dataset is pre-loaded, so you write the query or DataFrame code, run it, and compare your output against the expected result immediately.
Concepts covered
- LEFT JOIN
- COUNT
- GROUP BY
How to approach it
If you get stuck, work through these steps in order before looking at a full solution — each one narrows the problem down:
- Your result should return: customer_id, customer_name, city, order_count.
- Order the output customer_id ascending.
- Compare your output to the Expected Output — the columns, values and row order must match exactly.
Where this comes up
Variations of this problem have been reported in interviews at Databricks, Amazon, Infosys. Interviewers use it to check whether you can express the logic cleanly and reason about correctness on edge cases such as ties, nulls and empty groups.
How to practise it on PySpark.in
Open the challenge, write your SQL query in the editor and press Run to execute it against the sample dataset. Submitting checks your output against every test case, including hidden ones, so you find out straight away whether your logic holds up. You can retry as often as you like, and each solved challenge adds to your XP.
Related SQL challenges
- Find Customers Missing from New Table
- Customers With at Least One Order
- Customers Who Have Never Placed an Order
- Total Amount Spent Per Customer (With Zero)
- Find Employees in the HR Department
- Count Employees Per Department
Frequently asked questions
Do I need to install Spark or a database to solve this?
No. The SQL environment runs in your browser with the sample data already loaded, so there is nothing to install or configure.
Is this challenge free?
Yes - the problem, the sample dataset, the hints and unlimited test runs are free.
What level is it?
It is rated easy and covers Joins.