Laravel whereIn and whereNotIn Query Example

Websolutionstuff
1 min readMay 19, 2021

--

In this example we will see laravel whereIn and whereNotIn query example. laravel query builder provides many diffrent types of query to filter data from datatable.

The whereIn method verifies that a given column’s value is contained within the given array and the whereNotIn method verifies that the given column’s value is not contained in the given array.

So here we will see laravel whereIn and laravel whereNotIn query with example.

Syntax :

whereIn(Coulumn_name, Array)

Example :

SQL Query

SELECT * FROM students WHERE roll_no IN (1,2,3)

Laravel whereIn Query

public function index()
{
$students = Student::select("*")
->whereIn('roll_no', [1,2,3])
->get();
dd($students);
}

Laravel whereNotIn Query

public function index()
{
$roll_no = '1,2,3';
$array1 = explode(',', $roll_no);
$student = Student::select("*")
->whereNotIn('roll_no', $array1)
->get();
dd($student);
}

--

--

Websolutionstuff
Websolutionstuff

Written by Websolutionstuff

I am Laravel and PHP Developer. I have also Good Knowledge of JavaScript, jQuery, Bootstrap and REST API. Visit Website: http://websolutionstuff.com/

No responses yet