Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Optimize Slow SQL Queries
00:00
5 left

Optimize Slow SQL Queries

MediumSQL · PostgreSQL

Problem

How would you approach optimizing a slow-running SQL query?

Using the supplied PostgreSQL tables, demonstrate your approach with a query that returns completed order totals for customers during January 2025. Keep the response focused on query structure, filtering, join behavior, and performance considerations.

Output

  1. One row per qualifying customer.
  2. Columns: customer_id, customer_name, total_completed_amount.
  3. Include only customers whose January completed order total is greater than zero.
  4. Sort by total amount descending, then customer ID ascending.

Schema

customers
ColumnTypeDescription
customer_idPKINTUnique customer identifier
customer_nameVARCHAR(100)Customer display name
orders
ColumnTypeDescription
order_idPKINTUnique order identifier
customer_idINTCustomer associated with the order
statusVARCHAR(20)Order processing status
order_dateDATEDate the order was placed
amountDECIMAL(10,2)Order amount
Tablescustomersorders
Interviewer

Your question is Optimize Slow SQL Queries. Start with the requirements and the two tables in the Question tab.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.
CodePostgreSQL
You need to log in / sign up to run or submit.Ln 1
Run your query to see results here.