Menü schliessen
Created: February 28th 2025
Last updated: February 28th 2025
Categories: IT Development,  Laravel
Author: Nikola Jevtic

Boost Laravel Performance with Eloquent Subqueries: Efficient Query Optimization Guide

Donation Section: Background
Monero Badge: QR-Code
Monero Badge: Logo Icon Donate with Monero Badge: Logo Text
82uymVXLkvVbB4c4JpTd1tYm1yj1cKPKR2wqmw3XF8YXKTmY7JrTriP4pVwp2EJYBnCFdXhLq4zfFA6ic7VAWCFX5wfQbCC

Efficiently Using Subqueries in Laravel’s Eloquent ORM

Introduction

Laravel’s Eloquent ORM provides a powerful abstraction for database queries, making development easier and more readable. However, as applications grow, optimizing queries becomes essential to maintain performance. One underutilized feature of Eloquent is subqueries, which can significantly reduce query execution time and enhance efficiency.

In this post, we’ll explore how subqueries work in Laravel Eloquent, when to use them, and provide real-world examples to optimize your application.


Why Use Subqueries in Laravel?

A subquery is a query nested within another query. Instead of making multiple queries to fetch related data, you can embed a query within another, reducing the number of queries sent to the database.

Benefits of Subqueries in Laravel:

  • Reduces the number of queries executed.
  • Improves performance by leveraging database optimization.
  • Keeps code cleaner and more readable.
  • Avoids N+1 query problems in certain use cases.

Use Cases for Subqueries in Laravel

Here are some scenarios where subqueries improve query efficiency:

  • Fetching the Latest Record for Each Group (e.g., latest orders per user)
  • Calculating Aggregate Values on the Fly (e.g., total user purchases)
  • Replacing Joins for Better Performance
  • Fetching Data Without Extra Relationships

1. Using selectSub() for Subqueries

Laravel provides selectSub() for embedding subqueries inside your main query.

Example 1: Get the Latest Order Amount per User

Instead of running multiple queries to get the latest order, use a subquery:

$users = User::select('users.*')
    ->addSelect(['latest_order' => Order::select('total')
        ->whereColumn('orders.user_id', 'users.id')
        ->latest()
        ->limit(1)
    ])
    ->get();

Explanation:

  • addSelect() appends a column (latest_order) with the result of the subquery.
  • The subquery fetches the total from the latest order per user.
  • The whereColumn() ensures the subquery filters orders correctly.

2. Using Subqueries in where() Clauses

Subqueries can also be used inside where() conditions.

Example 2: Fetch Users with More Than $500 in Orders

$users = User::where(
    fn ($query) => $query->where(
        Order::selectRaw('SUM(total)')
            ->whereColumn('orders.user_id', 'users.id'),
        '>',
        500
    )
)->get();

Why Use This?

  1. Eliminates the need for additional joins or multiple queries.
  2. Fetches only the users who meet the condition dynamically.

3. Using Subqueries in orderBy()

Sorting based on aggregated values normally requires joins, but subqueries can simplify this.

Example 3: Order Users by Their Total Purchase Amount

$users = User::orderByDesc(
    Order::selectRaw('SUM(total)')
        ->whereColumn('orders.user_id', 'users.id')
)->get();

Benefits:

  • Efficiently sorts users without a JOIN.
  • Reduces query complexity while maintaining performance.

Comparison: Subqueries vs. Joins

Feature Subqueries Joins
Performance Faster for aggregates Faster for large joins
Readability More readable Complex with multiple joins
Query Execution Time Lower for certain cases Higher with multiple relations
Best for Aggregates & filtering Retrieving full related data

 

When to Use Subqueries vs. Joins?

  • Use subqueries when fetching a single value per parent record (e.g., latest order, total amount, etc.).
  • Use joins when you need multiple related records (e.g., fetching all orders for a user).

Performance Considerations

While subqueries can optimize queries, they should be used carefully:

  • Avoid subqueries inside loops, as they may lead to performance issues.
  • Consider indexing relevant columns (user_id, created_at) to speed up lookups.
  • Use Laravel’s query logging (DB::enableQueryLog()) to analyze query performance.

Conclusion

Using subqueries in Laravel Eloquent is a powerful technique to improve performance and write cleaner code. Whether replacing joins or optimizing filtering, subqueries can drastically reduce the number of queries needed.

By applying these strategies, your Laravel application will be more efficient, scalable, and performant.

Next Steps

  • Try integrating subqueries in your existing Laravel project.
  • Analyze query performance using Laravel Debugbar.
  • Experiment with more advanced database optimizations.

Have you tried using subqueries in Laravel? Share your thoughts in the comments! 🚀