“Comment rejoindre deux tables à Laravel” Réponses codées

Rejoignez 2 tables Laravel

use Illuminate\Support\Facades\DB;

$users = DB::table('users')
            ->join('contacts', 'users.id', '=', 'contacts.user_id')
            ->join('orders', 'users.id', '=', 'orders.user_id')
            ->select('users.*', 'contacts.phone', 'orders.price')
            ->get();
Jealous Jackal

Table de jointure Laravel

$users = DB::table('users')
            ->join('contacts', 'users.id', '=', 'contacts.user_id')
            ->join('orders', 'users.id', '=', 'orders.user_id')
            ->select('users.*', 'contacts.phone', 'orders.price')
            ->get();
Alberto Peripolli

Comment rejoindre deux tables à Laravel

use Illuminate\Support\Facades\DB;
//in the following example we will join two tables
//a products table and categories table
$categoryProducts = Product::join('categories', 'categories.id', '=', 'products.category_id')
        ->select('products.*', 'categories.category_name')
        ->where('products.status', 1)
        ->get();
Isaac

Laravel rejoigne 2 tableaux éloquents

 $select->joinSub(
                    $selectSubQry,
                    'ag',
                    'ag.id',
                    '=',
                    'agp.userId'
                );
Prasanti Prusty

Réponses similaires à “Comment rejoindre deux tables à Laravel”

Questions similaires à “Comment rejoindre deux tables à Laravel”

Plus de réponses similaires à “Comment rejoindre deux tables à Laravel” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code