How I Optimised Database Query Time by 80% with Smart Indexing?

Abhishek YadavAbhishek Yadav
1 min read

Ever had users complain about slow-loading dashboards? I just solved this exact problem for my client’s web app

Our customer dashboard was taking 15+ seconds to load.

After investigation, I found a complex SQL query retrieving user activity data with NO proper indexing.

EXPLAIN SELECT users.name, orders.order_date, orders.total_amount 
FROM orders JOIN users ON orders.user_id = users.id
WHERE orders.status = ‘completed’ 
AND orders.order_date > ‘20240101'
ORDER BY orders.order_date DESC;

So, I implemented strategic indexing:

  • Created a composite index on status + order date (DESC)

  • Added an index for the JOIN operation on user_id

 –– Composite index for the WHERE conditions and sorting

CREATE INDEX idx_orders_status_date ON orders (status, order_date DESC);

 -– Index for the JOIN operation

CREATE INDEX idx_orders_user_id ON orders (user_id);

With this, Query execution time dropped from 8 seconds to just 1.6 seconds – an 80% improvement with ZERO code changes!

Key Takeaways:

Sometimes the most impactful solutions are the simplest ones. This small change dramatically improved our UX without requiring additional hardware or complex code refactoring.

0
Subscribe to my newsletter

Read articles from Abhishek Yadav directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

Abhishek Yadav
Abhishek Yadav