How to use the where function in Laravel
A detailed guide on using the `where` function in Laravel to perform effective and flexible database queries.
In Laravel, the where
function is used to add conditions to database queries. This article will introduce different usages of the where
function, from basic to advanced, including simple conditions and more complex ones.
Different ways to use the where function in Laravel:
-
Using with simple condition:
$users = User::where('status', 'active')->get();
-
Using with multiple conditions:
$users = User::where('status', 'active') ->where('role', 'admin') ->get();
-
Using with OR condition:
$users = User::where('status', 'active') ->orWhere('status', 'pending') ->get();
-
Using with array of conditions:
$users = User::where([ ['status', '=', 'active'], ['role', '=', 'admin'] ])->get();
-
Using whereIn method:
$users = User::whereIn('id', [1, 2, 3])->get();
-
Using whereNotIn method:
$users = User::whereNotIn('id', [1, 2, 3])->get();
-
Using whereBetween method:
$users = User::whereBetween('age', [18, 25])->get();
-
Using whereNull method:
$users = User::whereNull('deleted_at')->get();
-
Using whereNotNull method:
$users = User::whereNotNull('email')->get();
-
Using whereDate method:
$users = User::whereDate('created_at', '2024-01-01')->get();
-
Using whereMonth method:
$users = User::whereMonth('created_at', '01')->get(); // January
-
Using whereYear method:
$users = User::whereYear('created_at', '2024')->get();
-
Using whereDay method:
$users = User::whereDay('created_at', '01')->get();
-
Using whereColumn method:
$users = User::whereColumn('created_at', 'updated_at')->get();
-
Using whereRaw method:
$users = User::whereRaw('age > ? AND status = ?', [18, 'active'])->get();
System requirements:
- Laravel 8.x or higher
- PHP 7.x or higher
Tips:
- Use complex conditions judiciously to avoid degrading query performance.
- Read the official Laravel documentation to learn more about other querying methods.