MYSQL query where clause using OR and AND in LARAVEL
P粉008829791
P粉008829791 2023-09-15 14:26:42
0
1
483

I want to select subcategories whose categories_id is 31 or 211 or 18 and the status is on and the mode is on.

I tried this but I got an error

$subcategories =DB::table('subcategories')
    ->where('categories_id','31')
    ->orWhere('categories_id','211')
    ->orWhere('categories_id','18')
    ->where('status','on')
    ->where('mode','on')
    ->get();

P粉008829791
P粉008829791

reply all(1)
P粉775788723

You must use the function:

$subcategories =DB::table('subcategories')
->where(function($query)
    {
        $query->where('categories_id', '31')
              ->orWhere('categories_id', '211')
              ->orWhere('categories_id', '18');
    })
->where('status','on')
->where('mode','on')
->get();
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template