Outer join or full join is possible in MySQL Laravel?
            Asked
            
        
        
            Active
            
        
            Viewed 781 times
        
    -4
            
            
        - 
                    Outer join example: https://stackoverflow.com/questions/28481321/how-to-do-a-left-outer-join-with-laravel. Also check out documentation https://laravel.com/docs/7.x/queries#joins – zedfoxus Jun 03 '20 at 14:44
- 
                    1Which outer join? – jarlh Jun 03 '20 at 14:46
1 Answers
0
            
            
        Lavarel does implement leftJoin (which I suppose is what you mean by outer join), as described in the documentation - see section Left Join / Right Join Clause.
full join is not supported in MySQL, nor in Lavarel.
 
    
    
        GMB
        
- 216,147
- 25
- 84
- 135
 
    