In this article, we will see laravel 9 whereColumn() query example. The whereCoulmn method is used to verify whether two columns are equal or not. So, we will learn whereColumn in laravel 9.
Laravel also provides orWhereColumn() method. So, you can also use whereColumn() with orWhereColumn() method in laravel.
So, let's see laravel 9 whereColumn() and compare two columns in laravel 9.
Syntax of whereColumn()
whereColumn('column name', 'operator', 'compare column name')
In this example, we will retrieve all those employee's records which are both column equals.
$employee = DB::table('employee')
->whereColumn('first_name', 'last_name')
->get();
You may also pass a comparison operator to the whereColumn
method.
$users = DB::table('users')
->whereColumn('updated_at', '>', 'created_at')
->get();
You may also pass an array of column comparisons to the whereColumn
method. These conditions will be joined using the and
operator.
$users = DB::table('users')
->whereColumn([
['first_name', '=', 'last_name'],
['updated_at', '>', 'created_at'],
])->get();
You might also like:
In this article, we will see the laravel accessor and mutator example. Here, we will learn what is accessor an...
Mar-16-2021
In the realm of web development, an efficient and robust data handling mechanism is paramount. Laravel, a PHP web applic...
Oct-11-2023
In this article, we will see the laravel 8 database seeder example. As we all know laravel framework provides...
Oct-23-2020
Today, I will show you Laravel 8 Toastr Notifications Example. There are many types of notifications availa...
Oct-19-2020