“Laravel Outter Join” Ответ

Ларавел присоединиться

Inner Join 	: ->join('contacts', 'users.id', '=', 'contacts.user_id')
Left Join 	: ->leftJoin('posts', 'users.id', '=', 'posts.user_id')
Right Join 	: ->rightJoin('posts', 'users.id', '=', 'posts.user_id')
Cross Join 	: ->crossJoin('colors')

Advance Queries : 
----------------- 
 		->join('contacts', function ($join) {
            $join->on('users.id', '=', 'contacts.user_id')
                 ->where('contacts.user_id', '>', 5);
        })
  
Lokesh003Coding

Ларавел присоединиться

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

Ларавел присоединиться

$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

Присоединяйтесь к красноречивому Ларавелу

 $customer = DB::table('customers')
                ->join('shops', 'customers.shop_id', '=', 'shops.shop_id')
                ->where('customer_contact', $contact_no)
                ->get();
Old-fashioned Otter

Присоединяйтесь к Ларавелу

$subCategories = Subcategory::join('categories', 'subcategories.category_id', '=', 'categories.id')
                              ->select('subcategories.*', 'categories.name AS cname')
                              ->orderBy('id', 'desc')
                              ->get();
Copy Paster

Laravel Outter Join

->join('answers as answers', 'responses.answer_id', '=', 'answers.id', 'left outer')
Alberto Peripolli

Ответы похожие на “Laravel Outter Join”

Вопросы похожие на “Laravel Outter Join”

Больше похожих ответов на “Laravel Outter Join” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования