Search
 
SCRIPT & CODE EXAMPLE
 

PHP

laravel 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);
        })
  
Comment

left join in laravel

$data = DB::table('post')
  ->leftJoin('category', 'post.category', '=', 'category.id')
  ->leftJoin('users', 'post.author', '=', 'users.id')
  ->orderBy('created_at', 'DESC')
  ->get();
Comment

laravel join

$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();
Comment

left join laravel

$users = DB::table('users')
            ->leftJoin('posts', 'users.id', '=', 'posts.user_id')
            ->get();

$users = DB::table('users')
            ->rightJoin('posts', 'users.id', '=', 'posts.user_id')
            ->get();
Comment

join in laravel

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

laravel join

$latestPosts = DB::table('posts')
                   ->select('user_id', DB::raw('MAX(created_at) as last_post_created_at'))
                   ->where('is_published', true)
                   ->groupBy('user_id');

$users = DB::table('users')
        ->joinSub($latestPosts, 'latest_posts', function ($join) {
            $join->on('users.id', '=', 'latest_posts.user_id');
        })->get();
Comment

laravel join

$query = DB::table('posts')
            ->select('posts.*',
                    'subcategories.subcategory_title_en',
                    'subcategories.subcategory_title_bn',
                    'categories.category_title_en',
                    'categories.category_title_bn',
                    'users.*',
                    'postimages.postimage_thumbnail'
                    )
            ->join('subcategories', 'subcategories.subcategory_id', '=', 'posts.subcategory_id')
            ->join('categories', 'categories.category_id', '=', 'subcategories.parent_category_id')
            ->join('users', 'users.id', '=', 'posts.user_id')
            ->join('postimages', 'postimages.post_id', '=', 'posts.post_id')->groupBy('posts.post_id');
Comment

PREVIOUS NEXT
Code Example
Php :: format date in laravel using carbon 
Php :: call to a member function connection() on null test laravel 
Php :: format time laravel 
Php :: toarray php 
Php :: install phpUnit in php by composer 
Php :: random string php 
Php :: get name custom post type wordpress 
Php :: php echo 
Php :: object values to array php 
Php :: laravel 8 date format 
Php :: php mysql insert date time 
Php :: get header respnse code php curl 
Php :: laravel file size validation 
Php :: wordpress show notice 
Php :: codeigniter order by random 
Php :: laravel link active class 
Php :: php delete array element 
Php :: laravel route group name 
Php :: name csrf token laravel mismatch 
Php :: wordpress hook add javascript 
Php :: php get ip from host 
Php :: php check if file exists 
Php :: capitalize php 
Php :: carbon difference between two dates 
Php :: minus 1 year php 
Php :: wp create user programmatically 
Php :: php header allow cross origin 
Php :: In PackageManifest.php line 122: 
Php :: php get current month first date 
Php :: blade if 
ADD CONTENT
Topic
Content
Source link
Name
6+3 =