Answers for "wherein in json array column laravel"

PHP
0

laravel where json array column

->whereJsonContains('user_id', 3)
Posted by: Guest on October-28-2020
0

laravel where json array column

$listOfUser = [1, 3, 5, 6, 8, 9];

$users = DB::table('users')
                    ->whereIn('user_id', $listOfUser)
                    ->get();
Posted by: Guest on October-28-2020

Browse Popular Code Answers by Language