Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Troubleshoot Slow Query Plans
00:00
5 left

Troubleshoot Slow Query Plans

HardSQL · PostgreSQL

Problem

How would you troubleshoot a slow query using execution plans?

Explain a repeatable PostgreSQL workflow for identifying the bottleneck, validating whether indexes are useful, and separating planner estimates from actual execution behavior. Address join strategies, row estimates, sorting, aggregation, buffer activity, and statistics.

Output

  1. A concise diagnosis workflow and the plan evidence to inspect
  2. Recommended validation steps and possible corrective actions
  3. A PostgreSQL query that can be analyzed with EXPLAIN (ANALYZE, BUFFERS)

Schema

customers
ColumnTypeDescription
customer_idPKINTCustomer identifier
customer_nameVARCHAR(100)Customer display name
orders
ColumnTypeDescription
order_idPKINTOrder identifier
customer_idINTCustomer who placed the order
created_atDATEOrder creation date
order_items
ColumnTypeDescription
order_item_idPKINTOrder item identifier
order_idINTOrder containing the item
quantityINTNumber of units
unit_priceNUMERIC(10,2)Price per unit
Tablescustomersordersorder_items
Interviewer

Your question is Troubleshoot Slow Query Plans. Start with the requirements and the three 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.