“Jak dołączyć do dwóch tabel w Laravel” Kod odpowiedzi

Dołącz 2 tabele Laravela

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

Laravel Table

$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

Jak dołączyć do dwóch tabel w 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 dołącz 2 tabele elokwentne

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

Odpowiedzi podobne do “Jak dołączyć do dwóch tabel w Laravel”

Pytania podobne do “Jak dołączyć do dwóch tabel w Laravel”

Więcej pokrewnych odpowiedzi na “Jak dołączyć do dwóch tabel w Laravel” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu